import React from 'react'; export interface PlaceholderProps { style?: React.CSSProperties; margin?: boolean; fill?: boolean; fixed?: boolean; } export declare const Placeholder: ({ style, margin, fill, fixed }: PlaceholderProps) => JSX.Element;