///
import { ButtonProps } from "../util/Button";
import { WithTheme } from "../types";
export declare type CtaProps = WithTheme<{
title: string;
buttonText?: string;
}> & Pick;
export declare function Cta({ title, onClick, buttonText, ...props }: CtaProps): JSX.Element;