export declare const LS_HELP = "usage: gws-axi drive ls [] [flags]\nargs[1]:\n Folder ID to list (default: \"root\", aka My Drive).\n Pass \"shared-with-me\" to list files shared with you\n but not in any of your folders.\nflags[6]:\n --recursive, -r Walk the tree and emit a flat list with full paths\n relative to the queried folder. Off by default; for\n a quality overview of an entire client/project\n folder, pass --recursive.\n --depth Cap recursion depth (default: unlimited \u2014 the\n --limit safety bound stops runaway walks). Only\n meaningful with --recursive; useful for \"give me\n a 2-level overview without diving into every\n subfolder.\"\n --limit Max items to return (default: 500, max: 5000).\n For --recursive, this is the total file count\n across the walk; for non-recursive, it's the page\n size against the API.\n --page Fetch next page (non-recursive only \u2014 recursive\n walks paginate internally).\n --include-trashed Include trashed files (default: trashed excluded)\n --account Account override when 2+ are configured\nexamples:\n gws-axi drive ls # root contents\n gws-axi drive ls 1AbC...folder-id # one folder\n gws-axi drive ls 1AbC...folder-id --recursive # whole tree\n gws-axi drive ls 1AbC... --recursive --depth 3 --limit 1000 # constrained walk\noutput:\n A `files[N]{path,id,mime_type,size_bytes,modified}` table. `path` is\n the name for non-recursive listings; the relative path within the walk\n for recursive ones (`Subfolder/file.pdf`). Folders have an empty\n size_bytes. `mime_type` is the raw Google MIME (`application/vnd.google-apps.folder`,\n `application/vnd.google-apps.document`, etc.) \u2014 use it to filter.\nnotes:\n Recursive walks make one API call per folder (Drive doesn't support\n recursive list natively). A folder with 10 subfolders \u00D7 3 levels deep\n \u2248 1+10+100+1000 calls \u2014 bounded by --depth and --limit. Trashed and\n shortcut items are skipped unless --include-trashed.\n"; export declare function driveLsCommand(account: string, args: string[]): Promise;