interface ContactProps { font?: string; btnColor?: string; btnTextColor?: string; textColor?: string; formdata: Array<{ [key: string]: any; }>; handleSubmit: () => void; handleUpdate: (e: any, id: string, j: string, k?: number) => void; } declare const ContactContent: React.FC; export default ContactContent;