import { ContactPropsTypeClasses } from './types'; export declare type ContactPropsType = { subtitleText?: any; widget?: any; placeholder?: { name?: string; subject?: string; phone?: string; email?: string; message?: string; }; isAddressDetail: boolean; classes?: ContactPropsTypeClasses; onCompleted?: () => void; onError?: () => void; }; export declare const isEnquiryAllowed: () => boolean | undefined; declare const Contact: { ({ subtitleText, widget, placeholder, classes, onCompleted, onError, isAddressDetail, }: ContactPropsType): JSX.Element | null; displayName: string; __docgenInfo: { description: string; displayName: string; props: { subtitleText: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; widget: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; placeholder: { defaultValue: { value: string; }; description: string; name: string; required: boolean; type: { name: string; }; }; isAddressDetail: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; classes: { defaultValue: { value: string; }; description: string; name: string; required: boolean; type: { name: string; }; }; onCompleted: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; onError: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; }; export default Contact;