import type { AllowOptions, Change } from "@metaobjectsdev/migrate-ts"; /** Translate parsed `--allow` tokens into the migrate-ts `AllowOptions` shape. */ export declare function tokensToAllowOptions(tokens: string[]): AllowOptions; /** * One-line, human-readable detail for a single change (table/column/index/fk/ * view). This is the shared core: `migrate` prints it as-is; `verify` prefixes * a +/-/~ glyph and a noun (`table`/`column`/…) on top. */ export declare function describeChange(c: Change): string; //# sourceMappingURL=allow.d.ts.map