interface CustomSectionsStepProps {
    formData: {
        customSections: {
            title: string;
            content: string;
        }[];
        industryCategory: string;
        includeNDPRCompliance: boolean;
    };
    onAddCustomSection: (title: string, content: string) => void;
    onRemoveCustomSection: (index: number) => void;
}
export default function CustomSectionsStep({ formData, onAddCustomSection, onRemoveCustomSection, }: CustomSectionsStepProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=CustomSectionsStep.d.ts.map