/// export interface CallToActionProps { disabled?: boolean; noIcon?: boolean; onClick?: () => void; text?: string | JSX.Element; variant?: "add" | "disabledAdd" | "remove" | "deleteAll"; } export declare const CallToAction: ({ text, variant, noIcon, disabled, onClick, }: CallToActionProps) => import("react/jsx-runtime").JSX.Element;