import { type ComputedRef, type Ref } from 'vue'; import { type ActionDefinition, type DropdownButtonProps } from '../../types'; import { AdminIcon } from '../../data'; interface DropdownActions { standalone: ActionDefinition[]; hidden: ActionDefinition[]; } interface DropdownData { dropdownActions: ComputedRef; dropdownIcon: ComputedRef; toggled: Ref; toggle(value?: boolean): void; } export declare const useDropdownButtonContext: (props: DropdownButtonProps) => DropdownData; export {};