export default IdealImageWithDefaults; declare function IdealImageWithDefaults({ icons: iconsProp, theme: themeProp, ...props }: { [x: string]: any; icons?: { [x: string]: ((props: any) => React.JSX.Element) | null; } | undefined; theme?: { placeholder: { backgroundSize: string; backgroundRepeat: string; position: string; }; img: { width: string; height: string; maxWidth: string; marginBottom: string; }; icon: { position: string; top: string; left: string; transform: string; textAlign: string; }; noscript: { position: string; top: number; left: number; }; } | undefined; }): React.JSX.Element; import React from 'react';