import type { Variable } from './types'; type DeepTokenObject = { [key: string]: Val | DeepTokenObject; }; export type DeepVariableObject = { [Key in keyof A]: A[Key] extends string | number ? Variable : A[Key] extends DeepTokenObject ? DeepVariableObject : never; }; export declare const createVariables: (tokens: A, parentPath?: string, isFont?: boolean) => DeepVariableObject; export {}; //# sourceMappingURL=createVariables.d.ts.map