import { PictureConf, PictureElementProps, PictureProps, ServerSideConf } from '../core'; import { ReactElement, FunctionComponent } from 'react'; export declare type PictureComponent = FunctionComponent; export declare type PictureConfReact = PictureConf & { renderPicture?: (props: PictureElementProps) => ReactElement; }; export declare type ServerSideConfReact = ServerSideConf & { renderPicture?: (props: PictureElementProps) => ReactElement; };