import React from "react"; export interface GSTSectionCustomizationProps { title?: string; iconColor?: string; showIcon?: boolean; backgroundColor?: string; textColor?: string; } interface GSTSectionProps extends GSTSectionCustomizationProps { gstNumber?: string; companyName?: string; themeColor?: string; } declare const GSTSection: React.FC; export default GSTSection;