export declare const spool: {
    type: string;
    provides: {
        resources: string[];
        api: {
            crons: string[];
            services: string[];
            models: string[];
        };
        config: string[];
    };
    lifecycle: {
        configure: {
            listen: string[];
            emit: any[];
        };
        initialize: {
            listen: string[];
            emit: any[];
        };
    };
};
