import React from "react"; import { SocialConstraints } from "../util/Socials"; import { SharedFormProps, ReactInputProps } from "../types"; export declare type ContactWithSocialsProps = Omit & { description: string; onSubmit: (event: React.MouseEvent, rightInputValue: string, leftInputValue: string, textAreaValue: string) => void; city?: string; street?: string; email?: string; inputRightProps?: ReactInputProps; inputLeftProps?: ReactInputProps; } & Omit; export declare function ContactWithSocials({ description, label, buttonLabel, onSubmit, city, email, street, theme, color, inputRightProps, inputLeftProps, textAreaProps, ...socials }: ContactWithSocialsProps): JSX.Element;