export type CtaProps = {
    to: string;
    text: string;
    primary?: boolean;
    Icon?: React.ElementType;
};
export default function Cta({ to, text, primary, Icon }: CtaProps): import("react/jsx-runtime").JSX.Element;
