/// export interface DefaultProps { style?: React.CSSProperties; className?: string; children?: React.ReactNode; } export interface PostonentsColors { text?: string; bodyBg?: string; footerBg?: string; footerText?: string; primary?: string; primaryBg?: string; hollow?: string; } export interface PostonentsTypography { fontFamily?: string; fontSize?: string; lineHeight?: string; light?: number; normal?: number; bold?: number; } export declare type PostonentsTheme = { colors: PostonentsColors; typo: PostonentsTypography; };