import { z, ZodType } from "zod"; import { SentryCommand } from "../types/index.js"; declare const SyncDesignTokensConfigSchema: z.ZodObject<{ apiKey: z.ZodString; apiUrl: z.ZodOptional; configFilePath: z.ZodString; designSystemId: z.ZodString; proxyUrl: z.ZodOptional; tokenDirPath: z.ZodOptional; tokenFilePath: z.ZodOptional; }, "strip", z.ZodTypeAny, { designSystemId: string; apiKey: string; configFilePath: string; apiUrl?: string | undefined; proxyUrl?: string | undefined; tokenDirPath?: string | undefined; tokenFilePath?: string | undefined; }, { designSystemId: string; apiKey: string; configFilePath: string; apiUrl?: string | undefined; proxyUrl?: string | undefined; tokenDirPath?: string | undefined; tokenFilePath?: string | undefined; }>; type SyncDesignTokensConfig = z.infer; export declare class SyncDesignTokens extends SentryCommand { static aliases: string[]; static description: string; static examples: string[]; static flags: { apiKey: import("@oclif/core/interfaces").OptionFlag; apiUrl: import("@oclif/core/interfaces").OptionFlag; configFilePath: import("@oclif/core/interfaces").OptionFlag; designSystemId: import("@oclif/core/interfaces").OptionFlag; proxyUrl: import("@oclif/core/interfaces").OptionFlag; tokenDirPath: import("@oclif/core/interfaces").OptionFlag; tokenFilePath: import("@oclif/core/interfaces").OptionFlag; }; get commandId(): string; get configSchema(): ZodType; run(): Promise; } export {}; //# sourceMappingURL=sync-tokens.d.ts.map