import React from "react"; import { SharedFormProps, ReactInputProps } from "../types"; export declare type ContactWithMapBigProps = SharedFormProps & { onSubmit: (event: React.MouseEvent, inputValue: string, textAreaValue: string) => void; inputProps?: ReactInputProps; }; export declare function ContactWithMapBig({ label, topDescription, bottomDescription, buttonLabel, onSubmit, mapIframeSrc, inputProps, textAreaProps, ...props }: ContactWithMapBigProps): JSX.Element;