import type { ScopeSelection } from "../core/storage.js"; export interface MoveSelection { readonly toProject: boolean; readonly toGlobal: boolean; readonly overwrite: boolean; } export interface ParsedNotesCommand { readonly subcommand: string | undefined; readonly args: readonly string[]; readonly scopeSelection: ScopeSelection; readonly moveSelection: MoveSelection; } export declare function parseNotesCommandArgv(tokens: readonly string[]): ParsedNotesCommand; export declare function parseNotesCommandInput(input: string): ParsedNotesCommand; //# sourceMappingURL=parser.d.ts.map