import type { Action, NoChildrenProp, WithAttributes } from '../../types'; import type { ButtonProps } from '../Button'; import type { MenuButtonProps } from '../MenuButton'; import type { MenuProps } from '../Menu'; export type ActionsProps = WithAttributes<'button', NoChildrenProp & Pick & Pick & { items: Action[]; contextualLabel?: string; /** @default 2 */ menuAt?: number; filterAt?: number; progress?: boolean; menuButtonProps?: { onClick?: MenuButtonProps['onClick']; onKeyDown?: MenuButtonProps['onKeyDown']; }; /** @default true */ iconOnly?: boolean; /** @default false */ compact?: ButtonProps['compact']; }>; declare const _default: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default _default; //# sourceMappingURL=Actions.d.ts.map