import { ColorTokens, RadiusTokens, SpaceTokens, defaultTokens } from "./tokens.js"; //#region src/theme/tokenBridge.d.ts type PlatformKind = 'web' | 'native'; type WebTokens = typeof defaultTokens; interface NativeTokens { colors: ColorTokens; spacing: SpaceTokens; typography: { h1: number; body: number; }; radii: RadiusTokens; icons: Record; } type BridgedTokens = WebTokens | NativeTokens; declare function mapTokensForPlatform(platform: PlatformKind): BridgedTokens; //#endregion export { mapTokensForPlatform }; //# sourceMappingURL=tokenBridge.d.ts.map