interface PluginOptions { /** * If it's true, @bitrix24/ui shows logs in the terminal while CSS is building. * * @default false */ logs?: boolean; /** * If it's true, @bitrix24/ui include custom fonts: * * b24-opensans * * b24-roboto * * b24-roboto-mono * * b24-montserrat * * b24-comforter-brush * * You need copy them to public folder ~> ./*\/fonts * Use ```npm @bitrix24/ui copy-fonts```. It's copy to public/fonts. * Or set target folder like this ~> ```npm @bitrix24/ui copy-fonts --dest=FolderForPublicContent/fonts``` * * @default false */ useLocalFonts?: boolean; } export type { PluginOptions as Config }; declare const _default: { (options: PluginOptions): { handler: import("tailwindcss/types/config").PluginCreator; config?: Partial; }; __isOptionsFunction: true; }; export default _default;