import { ClassDeclaration, Project, SourceFile } from 'ts-morph'; import { CoerceComponentOptions } from './coerce-component'; import { CoerceMethodClassOptions } from './coerce-method-class'; export interface CoerceTableHeaderButtonMethodOptions extends Omit { tableName: string; tsMorphTransformComponent?: (project: Project, [componentSourceFile]: [SourceFile], [componentClass]: [ClassDeclaration], options: CoerceComponentOptions) => void; refresh?: boolean; confirm?: boolean; tooltip?: string | null; errorMessage?: string | null; successMessage?: string | null; } export declare function CoerceTableHeaderButtonMethodRule(options: CoerceTableHeaderButtonMethodOptions): import("@angular-devkit/schematics").Rule;