import * as React from 'react'; import { BaseProps } from "../../../utils/types"; import { PlaceholderImageSize } from "../../atoms/placeholderImage"; import { PlaceholderParagraphProps } from "../../atoms/placeholderParagraph"; export interface PlaceholderProps extends BaseProps { withImage: boolean; round?: boolean; imageSize: PlaceholderImageSize; children?: React.ReactElement | React.ReactElement[]; } export declare const Placeholder: { (props: PlaceholderProps): React.JSX.Element; displayName: string; defaultProps: { withImage: boolean; imageSize: string; }; }; export default Placeholder;