import { FC } from 'react'; import { ThumborSettingType } from '../Common/types'; export declare const isLookbookAllowed: () => boolean | undefined; export declare type LookbookPropsType = { pathPrefix: string; linkText?: string; thumborSetting?: ThumborSettingType; loadingComponent?: any; errorComponent?: any; emptyStateComponent?: any; classes: { containerClassName?: string; rowClassName?: string; imageClassName?: string; linkClassName?: string; lookbookContainerClassName?: string; lookbookLabelContainerClassName?: string; labelClassName?: string; }; lazyLoadedImage?: boolean; widthImage?: number; heightImage?: number; }; declare const Lookbook: FC; export default Lookbook;