export interface FeaturesConfig {
    future?: {
        contentReleases?: boolean;
    };
}
export interface FeaturesService {
    /**
     * This is the features.(js|ts) file in the user project.
     */
    config: FeaturesConfig | undefined;
    future: {
        isEnabled: (futureFlagName: string) => boolean;
    };
}
//# sourceMappingURL=features.d.ts.map