import { CoerceMethodClassOptions } from './coerce-method-class'; export interface CoerceTableActionOptions extends Omit { type: string; tableName: string; refresh?: boolean; confirm?: boolean; tooltip?: string | null; errorMessage?: string | null; successMessage?: string | null; priority?: number | null; checkFunction?: string | null; } export declare function CoerceTableActionRule(options: CoerceTableActionOptions): import("@angular-devkit/schematics").Rule;