import { default as React } from 'react'; interface TextTwoImagesProps { title: string; label?: string; description?: React.ReactNode; bigImage: string; smallImage: string; } export declare const TextTwoImages: ({ label, title, bigImage, smallImage, description }: TextTwoImagesProps) => React.JSX.Element; export {};