export declare type EscapeHatchProps = { [elementHierarchy: string]: Record; } | null; export declare type VariantValues = { [key: string]: string; }; export declare type Variant = { variantValues: VariantValues; overrides: EscapeHatchProps; }; export declare const overrideTypesString = "export type EscapeHatchProps = {\n [elementHierarchy: string]: Record;\n} | null;\n\nexport type VariantValues = { [key: string]: string };\nexport type Variant = {\n variantValues: VariantValues;\n overrides: EscapeHatchProps;\n};";