export declare const NORMATIVE_MODIFIER: ("shift" | "alt" | "control" | "ctrl" | "meta" | "mod")[];
export declare const splitKeysByPlus: (keys: string) => string[];
export declare const startCase: (str: string) => string;
export declare const checkIsAppleDevice: (isApple?: boolean) => boolean;
export declare const combineKeys: (keys: string[]) => string;
