/// import { ImgProps } from "../util/Img"; import { ButtonProps } from "../util/Button"; import { WithTheme } from "../types"; export declare type ContentWithImageBigItemProps = WithTheme<{ title: string; description: string; buttonText?: string; }> & Pick & ImgProps; export declare function ContentWithImageBigItem({ title, description, imgSrc, imgNode, onClick, buttonText, imgAlt, ...props }: ContentWithImageBigItemProps): JSX.Element;