/// import { HeroProps } from "./Hero"; import { InputProps } from "../util/Input"; import { ButtonProps } from "../util/Button"; declare type BtnOnClickProps = Pick; export declare type HeroWithInputProps = { onSubmit: (inputValue: string) => void; bottomText?: string; buttonText?: string; inputProps?: InputProps; onGooglePlayClick?: BtnOnClickProps["onClick"]; onAppleStoreClick?: BtnOnClickProps["onClick"]; } & Omit; export declare function HeroWithInput({ title, description, imgSrc, imgNode, onGooglePlayClick, onAppleStoreClick, onSubmit, inputProps, bottomText, orientation, imgAlt, buttonText, ...props }: HeroWithInputProps): JSX.Element; export {};