export declare const ignoreStrokes: (activeElement: string) => boolean; export declare const classNames: (args: (string | boolean)[]) => string; export declare const isBrowser: () => boolean; /** * Gives you the ability to create a 'Globally Unique Identifier' from S4 encryptions * * e.g: guidGenerator() // 4456-4545-4343-55e3455 * @from https://github.com/adenekan41/helpers/blob/master/src/helpers/guid-generator.js * * @returns {String} Returns a Unique Identifier */ export declare const guidGenerator: () => string; /** * Gives you the ability to check if any data type is empty * * e.g: isEmpty('') // True * isEmpty({}) // True * @from https://github.com/adenekan41/helpers/blob/master/src/helpers/guid-generator.js * * @param {unknown} data - the data type * @returns {Boolean} Returns a boolean if its empty */ export declare const isEmpty: (data: any) => boolean; export declare const getOS: () => string | null | undefined; export declare const print: (data: string, type?: 'error' | 'warn', isSystemDefault?: boolean) => void;