import type { GriffelStylesUnsupportedCSSProperties } from '@griffel/style-types'; import type { LookupItem } from './types'; /** @internal */ export declare const DEBUG_RESET_CLASSES: Record; /** @internal */ export declare const DEFINITION_LOOKUP_TABLE: Record; /** @internal */ export declare const DATA_BUCKET_ATTR = "data-make-styles-bucket"; /** @internal */ export declare const DATA_PRIORITY_ATTR = "data-priority"; /** @internal */ export declare const HASH_PREFIX = "f"; /** @internal */ export declare const RESET_HASH_PREFIX = "r"; /** @internal */ export declare const SEQUENCE_HASH_LENGTH = 7; /** @internal */ export declare const SEQUENCE_PREFIX = "___"; /** @internal */ export declare const DEBUG_SEQUENCE_SEPARATOR = "_"; /** @internal */ export declare const SEQUENCE_SIZE: number; /** @internal */ export declare const LOOKUP_DEFINITIONS_INDEX = 0; /** @internal */ export declare const LOOKUP_DIR_INDEX = 1; /** @internal */ export declare const UNSUPPORTED_CSS_PROPERTIES: Record; /** * Removes a CSS property from the style object. * * @link https://griffel.js.org/react/api/make-styles * * Do not use the value directly, use `RESET` constant instead. */ export declare const RESET: "unset";