import { type ReactNode } from 'react'; import type { TriggerSize } from '../types'; /** * Props for the Button component. */ export interface TriggerButtonProps { children: ReactNode; /** * Size of the trigger button. * @default 'md' */ size?: TriggerSize; /** * Accessible label for the button. * @default 'Open privacy settings' */ ariaLabel?: string; /** * Additional CSS class names. */ className?: string; /** * When true, removes default styling. * @default false */ noStyle?: boolean; } /** * The clickable button element for the trigger. * * @example * ```tsx * * * Privacy Settings * * ``` */ export declare const TriggerButton: import("react").ForwardRefExoticComponent>;