import * as React from 'react'; import { type ButtonProps } from './button'; export type CtaProps = Omit & { capture?: (cta: string) => void; ctaName?: string; as?: 'button' | 'a'; href?: string; onClick?: React.MouseEventHandler; children?: React.ReactNode; ref?: React.Ref; }; export declare function Cta({ capture, ctaName, className, as, href, onClick, size, children, ref, ...props }: CtaProps): import("react/jsx-runtime").JSX.Element;