import type { OptionsType, Components } from './preset-types.js';
export default function (options?: OptionsType & {
    only?: Components[];
    except?: Components[];
}): {
    darkMode: string;
    theme: {
        extend: {
            colors: {
                background: string;
                foreground: string;
                muted: string;
                'muted-foreground': string;
                card: string;
                'card-foreground': string;
                popover: string;
                'popover-foreground': string;
                border: string;
                input: string;
                primary: string;
                'primary-foreground': string;
                secondary: string;
                'secondary-foreground': string;
                accent: string;
                'accent-foreground': string;
                destructive: string;
                'destructive-foreground': string;
                ring: string;
            };
            fontFamily: {
                'geist-sans': string[];
                'geist-mono': string[];
            };
        };
    };
    plugins: {
        handler: import("tailwindcss/types/config.js").PluginCreator;
        config?: Partial<import("tailwindcss/types/config.js").Config> | undefined;
    }[];
};
