/** @format */ /// interface GenericCompProps { children: any; color?: string; fontSize?: string; fontWeight?: number; padding?: string; borderStyle?: string; borderColor?: string; borderWidth?: string; textAlign?: string; } export declare const Title: ({ children, color, fontSize, padding, textAlign, fontWeight, }: GenericCompProps) => JSX.Element; export declare const SubTitle: ({ children, color, fontSize, padding, textAlign, fontWeight, }: GenericCompProps) => JSX.Element; export {};