import { type Type } from '@nestjs/common'; export interface FeatureRegistration { id: string; enabled: boolean; config: Record; } export declare function registerFeature(id: string, config?: { enabled?: boolean; } & Record): Type; //# sourceMappingURL=feature-registration.d.ts.map