import { type KintoneRestAPIClient } from "@kintone/rest-api-client"; import { type RestAPIClientOptions } from "../../kintone/client"; import type { BoundMessage, CustomizeManifest } from "../core"; export type ApplyParams = RestAPIClientOptions & { appId: string; inputPath: string; yes: boolean; }; export declare const apply: (apiClient: KintoneRestAPIClient, appId: string, manifest: CustomizeManifest, manifestDir: string, boundMessage: BoundMessage) => Promise; export declare const runApply: (params: ApplyParams) => Promise;