/// export declare type ParagraphProps = { children?: React.ReactNode; line?: number; className?: string; type?: 'secondary' | 'default'; }; export declare type TitleProps = { h1?: boolean; h2?: boolean; h3?: boolean; h4?: boolean; h5?: boolean; h6?: boolean; children?: React.ReactNode; style?: React.CSSProperties; className?: string; id?: string; type?: 'secondary' | 'default'; };