/** Tailwind v3 config preset type (minimal shape we extend). */ type TailwindPreset = { darkMode?: 'class' | 'selector' | 'media'; theme?: { extend?: Record; }; plugins?: unknown[]; }; /** * Preset for BiChat UI: theme extensions and dark mode. * Stable and minimal; apps can override via their own theme or CSS variables. */ declare const bichatTailwindPreset: TailwindPreset; /** * Returns absolute paths to SDK BiChat bundle files so Tailwind can scan them * for class names. Include the result in your Tailwind config content array. * Resolves via @iota-uz/sdk/package.json when available so the package root is unambiguous. */ declare function bichatTailwindContent(): string[]; export { type TailwindPreset, bichatTailwindContent, bichatTailwindPreset };