6 lines
226 B
TypeScript
6 lines
226 B
TypeScript
/**
|
|
* @internal These variables should not appear in the :root stylesheet when the `defaultMode="dark"`
|
|
*/
|
|
declare const excludeVariablesFromRoot: (cssVarPrefix: string) => string[];
|
|
export default excludeVariablesFromRoot;
|