import type { ContactFormField, ContactInfoConfig } from './types'; export interface ContactFormContentProps { title: string; description?: string; infoConfig?: ContactInfoConfig; fields: ContactFormField[]; onSubmit: (data: Record) => Promise; submitLabel: string; successMessage?: string; errorMessage?: string; fieldRequiredMessage?: string; } export declare function ContactFormContent({ title, description, infoConfig, fields, onSubmit, submitLabel, successMessage, errorMessage, fieldRequiredMessage, }: ContactFormContentProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ContactFormContent.d.ts.map