interface ColumnImageProps { src: string; insets?: { top?: number; right?: number; bottom?: number; left?: number; }; clip?: boolean; } declare function ColumnImage(props: ColumnImageProps): import('react').ReactElement<{ style: { overflow: string; }; }, string | import('react').JSXElementConstructor>; export { ColumnImage };