import React from "react"; export declare type Theme = "light" | "dark"; export declare type ThemeColor = "indigo" | "yellow" | "red" | "purple" | "pink" | "blue" | "green"; export declare type ReactHTMLInputElementProps = React.DetailedHTMLProps, T>; export declare type ReactInputProps = Omit, "className" | "ref"> & { label?: string; }; export declare type ReactTextAreaProps = Omit, "className" | "ref"> & { label?: string; }; export declare type SharedFormProps = WithTheme<{ label: string; mapIframeSrc: string; topDescription?: string; bottomDescription?: string; buttonLabel?: string; textAreaProps?: ReactTextAreaProps; }>; export declare type WithTheme> = T & { theme?: Theme; color?: ThemeColor; }; export declare type WithoutTheme, K extends keyof T = ""> = Omit;