/** * Boundaries Command - drift boundaries * * Show data access boundaries and check for violations. * Tracks which code accesses which database tables/fields. * * @requirements Data Boundaries Feature */ import { Command } from 'commander'; export interface BoundariesOptions { /** Output format */ format?: 'text' | 'json'; /** Enable verbose output */ verbose?: boolean; } /** * Create the boundaries command with subcommands */ export declare const boundariesCommand: Command; //# sourceMappingURL=boundaries.d.ts.map