/**
 * BismillahCSS Framework Presets
 * Pre-defined theme configurations for different futuristic aesthetics.
 */
declare const bPresets: {
    deep_cyber: {
        colors: {
            primary: string;
            secondary: string;
            background: string;
            surface: string;
        };
        glows: {
            primary: string;
        };
    };
    solar_aurora: {
        colors: {
            primary: string;
            secondary: string;
            background: string;
            surface: string;
        };
        glows: {
            primary: string;
        };
    };
    void_silk: {
        colors: {
            primary: string;
            secondary: string;
            background: string;
            surface: string;
        };
        glows: {
            primary: string;
        };
    };
    glass_frost: {
        colors: {
            primary: string;
            background: string;
        };
        blur: string;
    };
    neumorphic_soft: {
        colors: {
            primary: string;
            secondary: string;
            background: string;
        };
        shadows: string;
    };
    cyber_neon: {
        colors: {
            primary: string;
            background: string;
        };
        glows: {
            primary: string;
        };
    };
};
declare const applyPreset: (name: keyof typeof bPresets) => {
    colors: {
        primary: string;
        secondary: string;
        background: string;
        surface: string;
    };
    glows: {
        primary: string;
    };
} | {
    colors: {
        primary: string;
        secondary: string;
        background: string;
        surface: string;
    };
    glows: {
        primary: string;
    };
} | {
    colors: {
        primary: string;
        secondary: string;
        background: string;
        surface: string;
    };
    glows: {
        primary: string;
    };
} | {
    colors: {
        primary: string;
        background: string;
    };
    blur: string;
} | {
    colors: {
        primary: string;
        secondary: string;
        background: string;
    };
    shadows: string;
} | {
    colors: {
        primary: string;
        background: string;
    };
    glows: {
        primary: string;
    };
};

export { applyPreset, bPresets };
