import { Command } from 'commander'; import type { CookieRecord, ProfileUploadResponse } from '../lib/types.js'; type TldtsParse = (host: string, opts: { allowPrivateDomains: boolean; }) => { domain?: string; }; export declare function groupByCanonicalDomain(cookies: CookieRecord[], parse: TldtsParse): Map; export declare const MAX_COOKIES_PER_UPLOAD = 3000; export declare function buildChunks(groups: Map): CookieRecord[][]; export declare function uploadAllDomains(profileId: string, cookies: CookieRecord[], apiKey: string): Promise; export declare function registerProfile(program: Command): void; export {};