/// interface IPlaceholderImageProps { /** @ignore */ className?: string; /** * A rectangular image has a 4:3 ratio. * @default false */ rectangular?: boolean; } declare const PlaceholderImage: (props: IPlaceholderImageProps) => JSX.Element; export { PlaceholderImage, IPlaceholderImageProps };