import * as React from 'react'; export type PlaceholderShape = 'circle' | 'square' | 'rectangle' | 'sharpRectangle' | 'textRectangle'; export type PlaceholderProps = { shape: PlaceholderShape index?: number disableAnimations?: boolean }; export declare const Placeholder: ({ shape, index, disableAnimations, }: PlaceholderProps) => React.JSX.Element; export declare const PlaceholderSvg: ({ shape, index, disableAnimations, }: PlaceholderProps) => React.JSX.Element;