import { type KintoneRestAPIClient } from "@kintone/rest-api-client"; import { type RestAPIClientOptions } from "../../kintone/client"; import type { BoundMessage } from "../core"; export type ExportParams = RestAPIClientOptions & { appId: string; outputPath: string; yes: boolean; }; export declare const exportCustomizeSetting: (apiClient: KintoneRestAPIClient, appId: string, outputPath: string, m: BoundMessage) => Promise; export declare const runExport: (params: ExportParams) => Promise;