import React from "react"; import { WithTheme, ReactInputProps } from "../types"; export declare type CtaWithFormColProps = WithTheme<{ title: string; description: string; buttonText?: string; onSubmit: (event: React.MouseEvent, inputLeftValue: string, inputRightValue: string) => void; inputLeftProps?: ReactInputProps; inputRightProps?: ReactInputProps; }>; export declare function CtaWithFormCol({ title, description, onSubmit, buttonText, inputLeftProps, inputRightProps, ...props }: CtaWithFormColProps): JSX.Element;