import React from "react"; import { SharedFormProps, ReactInputProps } from "../types"; export declare type ContactWithMapSmallProps = SharedFormProps & { onSubmit: (event: React.MouseEvent, topInputValue: string, bottomInputValue: string, textAreaValue: string) => void; address?: string; email?: string; phone?: string; inputTopProps?: ReactInputProps; inputBottomProps?: ReactInputProps; }; export declare function ContactWithMapSmall({ label, topDescription, bottomDescription, buttonLabel, onSubmit, mapIframeSrc, address, email, phone, inputTopProps, inputBottomProps, textAreaProps, ...props }: ContactWithMapSmallProps): JSX.Element;