import type { KeytipProps } from '../Keytip'; export declare function useKeytipsManager(): { enterKeytipMode: () => void; exitKeytipMode: () => void; update: (keytip: KeytipProps & { uniqueId: string; }) => void; register: (keytip: KeytipProps) => string; unregister: (uniqueId: string) => void; getKeytips: () => Record; getKeytipsModeStatus: () => boolean; };