import type { FunctionComponent, ReactNode } from 'react'; import type { BaseProps, ForwardProps } from '../../types'; export interface ParagraphSkeletonProps extends BaseProps { /** Children for the skeleton. These should be Line and Rectangle Skeletons. */ children: ReactNode; } declare const ParagraphSkeleton: FunctionComponent; export default ParagraphSkeleton; //# sourceMappingURL=ParagraphSkeleton.d.ts.map