import { ImageRatios } from '../Image/Image'; export declare const contentTypesArray: readonly ["audio", "book", "ebook", "event", "image", "miscellaneous", "video"]; export type ContentTypes = typeof contentTypesArray[number]; export interface PlaceholderImageProps { aspectRatio?: ImageRatios; contentTitle?: string; contentType?: ContentTypes; } export declare const PlaceholderImage: (props: PlaceholderImageProps) => import("react/jsx-runtime").JSX.Element;