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