import createPlugin from 'tailwindcss/plugin';
export interface CapsizePluginOptions {
    /** The root font-size, in pixels. */
    rootSize?: number;
    /** Custom utility classname. */
    className?: string;
}
type PluginType = ReturnType<typeof createPlugin.withOptions<CapsizePluginOptions>>;
declare const thisPlugin: PluginType;
export default thisPlugin;
