import { type ButtonProps, type TooltipProps } from "@salt-ds/core"; import type { IconProps } from "@salt-ds/icons"; import { type ComponentType } from "react"; export type ContactActionProps = ButtonProps & { accessibleText?: string; tooltipProps?: TooltipProps; } & ({ label: string; icon?: ComponentType; } | { label?: string; icon: ComponentType; }); export declare const ContactAction: import("react").ForwardRefExoticComponent>;