import type { shadows } from '../tokens/shadows.js'; type NativeShadowToken = (typeof shadows)[keyof typeof shadows]; type PopoverTokensConfig = { contentBg: string; contentFg: string; contentBorder: string; contentWebShadow: string; contentNativeShadow: NativeShadowToken; titleFg: string; descriptionFg: string; radiusLg: number; spacing3: number; spacing4: number; }; export declare const createPopoverTokens: (config: PopoverTokensConfig) => { readonly content: { readonly bg: string; readonly fg: string; readonly border: string; readonly shadow: { readonly web: string; readonly native: NativeShadowToken; }; readonly borderWidth: 1; readonly radius: number; readonly padding: number; readonly gap: number; readonly minWidth: 220; readonly maxWidth: 320; }; readonly title: { readonly fg: string; }; readonly description: { readonly fg: string; }; readonly arrow: { readonly size: 10; readonly bg: string; readonly border: string; }; }; export {}; //# sourceMappingURL=createPopoverTokens.d.ts.map