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