import React from "react"; import { FooterLinksProps, FooterProps } from "./Footer"; import { WithoutTheme, ReactInputProps } from "../types"; export declare type FooterWithLinksAndInputBigProps = { formDescription: string | React.ReactNode; bottomText?: string; buttonText?: string; links: Array>; inputProps?: ReactInputProps; onClick: (event: React.MouseEvent, inputValue: string) => void; } & FooterProps; export declare function FooterWithLinksAndInputBig({ name, socials, formDescription, links, onClick, inputProps, theme, color, bottomText, buttonText, ...props }: FooterWithLinksAndInputBigProps): JSX.Element;