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; export default Contact;