import { CoerceTableActionOptions } from './coerce-table-action'; export interface LoadFromTableActionOptions { operationId: string; scope?: string | null; body: boolean | Record; parameters: boolean | Record; } export interface CoerceFormTableActionOptions extends CoerceTableActionOptions { loadFrom?: LoadFromTableActionOptions | null; formInitial?: Record | boolean; scope?: string | null; formComponent: string; } export declare function CoerceFormTableActionRule(options: CoerceFormTableActionOptions): import("@angular-devkit/schematics").Rule;