import { PropsWithChildren } from 'react'; import { ThemeColorVariables } from '@dreipol/t3-react-theme'; export type CallToActionProps = PropsWithChildren<{ /** * Variant */ variant?: 'left' | 'centered'; /** * Custom classname */ className?: string; /** * Custom background color */ color?: ThemeColorVariables; }>; export declare const CallToAction: ({ className, variant, color, children }: CallToActionProps) => import("react/jsx-runtime").JSX.Element;