/**
 * BismillahCSS Component Registry
 * Tracking all available components for dynamic inclusion and discovery.
 */
declare const bRegistry: {
    v: string;
    components: {
        name: string;
        type: string;
        version: string;
    }[];
};
declare const getRegistry: () => {
    v: string;
    components: {
        name: string;
        type: string;
        version: string;
    }[];
};
declare const queryRegistry: (name: string) => {
    name: string;
    type: string;
    version: string;
} | undefined;

export { bRegistry, getRegistry, queryRegistry };
