import { FC } from 'react'; import { BoxProps } from '../box'; export type PlaceholderBackgroundProps = BoxProps & { color?: string; viewBox?: string | null | undefined; }; export declare const PlaceholderBackground: FC;