export declare function isMacOs(): boolean; /** * @description * Returns true if the Ctrl key is held down on Windows or Linux * and returns true if the Command key is held down on MacOS * * This is useful because MacOS uses the command key instead of the ctrl key for * keyboard shortcuts e.g. Cmd + A instead of Ctrl + A * * @returns * Windows & Linux > Returns true if the user was holding ctrl during the event * * MacOS > Returns true if the user was holding meta during the event */ export declare function hasCtrlLikeModifier(event: PointerEvent | KeyboardEvent): boolean;