import * as React from 'react'; import { BaseProps } from "../../../utils/types"; export declare type Length = 'small' | 'medium' | 'large'; export declare type PlaceholderParagraphSize = 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl' | 'xxxl'; export interface PlaceholderParagraphProps extends BaseProps { length: Length; size?: PlaceholderParagraphSize; } export declare const PlaceholderParagraph: { (props: PlaceholderParagraphProps): React.JSX.Element; displayName: string; defaultProps: { length: string; }; }; export default PlaceholderParagraph;