import { Rule } from '@angular-devkit/schematics'; import { ControlOption } from '@rxap/utilities'; import { TsMorphAngularProjectTransformOptions } from '../ts-morph-transform'; export interface CoerceOptionsDataSourceRuleOptions extends TsMorphAngularProjectTransformOptions { name: string; optionList: ReadonlyArray; } export declare function CoerceOptionsDataSourceRule(options: Readonly): Rule;