export declare const SEARCH_HELP = "usage: gws-axi drive search [flags]\nflags[5]:\n --query Full-text search across file names AND content\n (Drive's fullText index). Quote multi-word\n phrases. Default when omitted: all files\n modified in the last 30 days.\n --mime Filter by mime type (e.g.,\n \"application/vnd.google-apps.document\" for\n only Google Docs; \"application/pdf\" for PDFs).\n --limit Max files to return (default: 100, max: 1000).\n --page Fetch the next page (from prior `next_page`).\n --account Account override when 2+ are configured.\nexamples:\n gws-axi drive search --query \"smart data hub\"\n gws-axi drive search --query \"tides\" --mime application/vnd.google-apps.document\n gws-axi drive search --query \"invoice\" --mime application/pdf --limit 25\noutput:\n A `files[N]{id,name,mime_type,size_bytes,modified,owners}` table.\n Pass any `id` to `drive get` for full metadata, `docs read` (for\n Docs), or `docs download` (any file). The `mime_type` lets agents\n filter for the file type they care about.\nnotes:\n fullText matching uses Drive's index, which lags edits by minutes.\n Recently-modified docs may not be indexed yet \u2014 for those, use\n `drive ls` on the parent folder instead.\n"; export declare function driveSearchCommand(account: string, args: string[]): Promise;