import { type DataExplorerStrategy } from "../testing/data-explorer"; interface FixtureCommandOptions { _?: string[]; all?: boolean; include?: string; exclude?: string; count?: string; "save-to"?: string; strategy?: DataExplorerStrategy; limit?: string; "use-llm"?: boolean; "no-cache"?: boolean; } /** * fixture gen 명령어 - cone 메타데이터를 활용하여 자동으로 fixture를 생성합니다. */ export declare function fixtureGenCommand(options: FixtureCommandOptions): Promise; /** * fixture fetch 명령어 - 실제 운영 DB에서 데이터를 가져와 fixture로 저장합니다. * 관계된 데이터도 함께 가져오므로 현실적인 테스트 데이터를 확보할 수 있습니다. */ export declare function fixtureFetchCommand(options: FixtureCommandOptions): Promise; /** * fixture explore 명령어 - DB의 실제 데이터를 조회하여 확인합니다. * 저장하지 않고 조회만 하므로 데이터를 빠르게 확인할 때 유용합니다. */ export declare function fixtureExploreCommand(options: FixtureCommandOptions): Promise; export {}; //# sourceMappingURL=fixture.d.ts.map