export type AccentButtonVariant = 'trailingIcon' | 'leadingDot'; type Props = { variant?: AccentButtonVariant; }; /** * Composes the dot-track and animated-trailing-icon recipe buttons. * `DynamicIconButton` and `ButtonWithDot` remain available as separate exports. */ export declare const AccentButton: ({ variant }: Props) => import("react/jsx-runtime").JSX.Element; export {};