import React from "react"; import { WithTheme, ReactInputProps } from "../types"; export declare type CtaWithFormRowProps = WithTheme<{ title: string; description: string; formHeader: string; bottomText?: string; buttonText?: string; onSubmit: (event: React.MouseEvent, inputTopValue: string, inputBottomValue: string) => void; inputTopProps?: ReactInputProps; inputBottomProps?: ReactInputProps; }>; export declare function CtaWithFormRow({ title, description, formHeader, bottomText, onSubmit, buttonText, inputTopProps, inputBottomProps, ...props }: CtaWithFormRowProps): JSX.Element;