import type { Modules } from '@roots/bud-framework/registry/modules'; export declare const dependsOn: (dependsOn: Array<`${keyof Modules & string}`>) => (constructor: Type) => { new (...args: any[]): { [x: string]: any; dependsOn: Set; }; } & Type;