import type { BlockVersion } from '../../model/BlockVersion'; import type { ComponentType } from '../../model/ComponentType'; import type { IconVersion } from '../../model/IconVersion'; import type { PreventableEventWithTarget } from '../../ui-kit/PreventableEvent'; interface HeaderQuickActionsMenuProps extends ComponentType { iconVersion?: IconVersion; onClick?: (ev: PreventableEventWithTarget) => void; ariaLabel?: string; version?: BlockVersion; buttonSize?: 'default' | 'medium' | 'large'; } export declare const HeaderQuickActionsMenu: import("@redneckz/uni-jsx").UNIComponent; export declare const useHandlers: () => { call: () => void; chat: (ev: PreventableEventWithTarget) => void; }; export {};