import type { PluginCreator, ResolvableTo } from 'tailwindcss/types/config'; import { type PluginOptions, type ResolvedFluidThemeConfig } from './util/context'; export type FluidThemeConfig = ResolvableTo; declare const fluid: { (options: PluginOptions): { handler: PluginCreator; config?: Partial; }; __isOptionsFunction: true; }; export default fluid; export { default as extract } from './extractor'; /** * Tailwind's default screens converted to `rem`, for better * compatibility with core plugins. */ export declare const screens: { sm: string; md: string; lg: string; xl: string; "2xl": string; }; /** * Tailwind's default font sizes, with all line heights converted to `rem` for better * compatibility with core plugins. */ export declare const fontSize: { sm: [string, string]; lg: [string, string]; xl: [string, string]; "2xl": [string, string]; xs: [string, string]; "3xl": [string, string]; "4xl": [string, string]; "5xl": [string, string]; "6xl": [string, string]; "7xl": [string, string]; base: [string, string]; "8xl": [string, string]; "9xl": [string, string]; };