import * as react_jsx_runtime from 'react/jsx-runtime'; import { HTMLAttributes } from 'react'; import { Anchor } from './anchor.mjs'; import 'url'; import '../types/components.mjs'; import 'next/image'; import 'next/link'; import 'react-player'; declare const variantStyles: { primary: string; 'primary-inverted': string; secondary: string; 'secondary-inverted': string; tertiary: string; }; declare namespace CallToActionProps { type Variant = keyof typeof variantStyles; interface BaseProps { variant: Variant; } interface AnchorProps extends BaseProps, React.ComponentPropsWithoutRef { href: string; as?: never; } interface ButtonProps extends BaseProps, React.DetailedHTMLProps, HTMLButtonElement> { href?: never; as?: never; } /** * Use inside `` or as visual part of bigger interactive element. * Prefer using `href` prop using CallToAction as `