mayak-common-library-payload 0.1.38 → 0.1.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -805,11 +805,11 @@ declare const ImageAndTextBlock: FC<PropsWithChildren & ImageAndTextBlockProps>;
805
805
  interface TwoTextColumnProps {
806
806
  className?: string;
807
807
  info: {
808
- title: string;
809
- text: string;
808
+ title?: string;
809
+ content: ReactNode;
810
810
  }[];
811
811
  }
812
- declare const TwoTextColumn: FC<TwoTextColumnProps>;
812
+ declare const TwoTextColumn: ({ className, info }: TwoTextColumnProps) => react_jsx_runtime.JSX.Element;
813
813
 
814
814
  interface RealtyTitleProps {
815
815
  title?: string | null;
package/dist/index.d.ts CHANGED
@@ -805,11 +805,11 @@ declare const ImageAndTextBlock: FC<PropsWithChildren & ImageAndTextBlockProps>;
805
805
  interface TwoTextColumnProps {
806
806
  className?: string;
807
807
  info: {
808
- title: string;
809
- text: string;
808
+ title?: string;
809
+ content: ReactNode;
810
810
  }[];
811
811
  }
812
- declare const TwoTextColumn: FC<TwoTextColumnProps>;
812
+ declare const TwoTextColumn: ({ className, info }: TwoTextColumnProps) => react_jsx_runtime.JSX.Element;
813
813
 
814
814
  interface RealtyTitleProps {
815
815
  title?: string | null;