import { FC } from 'react'; import { ThumborSettingType } from '../Common/types'; export declare type LookBookProps = { classes: { containerClassName: string; rowClassName: string; imageClassName: string; thumbnailImageClassName?: string; activeClassName?: string; }; thumborSetting?: ThumborSettingType; loadingComponent?: any; errorComponent?: any; slug: string; mode?: 'default' | 'thumbnail'; getLookbookCover?: (cover: string) => void; getTitle: (title: string) => void; emptyStateComponent?: any; lazyLoadedImage?: boolean; widthImage?: number; heightImage?: number; }; declare const LookbookSingle: FC; export default LookbookSingle;