export { default as FigureCaption } from "./Caption"; export { default as FigureByline } from "./Byline"; export const FIGURE_SIZES: { center: number; narrow: number; tiny: number; breakout: number; breakoutLeft: number; float: number; floatSmall: number; floatTiny: number; }; export function Figure({ children, attributes, size }: { children: any; attributes: any; size: any; }): JSX.Element; export namespace Figure { namespace propTypes { const children: PropTypes.Validator; const size: PropTypes.Requireable; const attributes: PropTypes.Requireable; } } export function CoverTextTitleBlockHeadline({ children, attributes }: { children: any; attributes: any; }): JSX.Element; export function FigureCover({ size, text, audio, ...props }: { [x: string]: any; size: any; text: any; audio: any; }): JSX.Element; export function FigureGroup({ children, attributes, columns, size, data }: { children: any; attributes: any; columns: any; size: any; data: any; }): JSX.Element; export namespace FigureGroup { export namespace propTypes_1 { const children_1: PropTypes.Validator; export { children_1 as children }; const attributes_1: PropTypes.Requireable; export { attributes_1 as attributes }; const size_1: PropTypes.Requireable; export { size_1 as size }; export const columns: PropTypes.Validator; } export { propTypes_1 as propTypes }; export namespace defaultProps { const columns_1: number; export { columns_1 as columns }; } } import PropTypes from "prop-types"; export { default as FigureImage, MIN_GALLERY_IMG_WIDTH } from "./Image";