import * as fs from "fs"; import type { SetUpTestAppClient, AddFormFieldOutput, JsCustomizeOutput, AddRecordOutput } from "../kintone/clients/setup-test-app-client"; type Client = SetUpTestAppClient; export declare const SetupTestApp: { createKintoneApp: (client: Client, name: string) => Promise; addDemoField: (client: Client, app: string) => Promise; uploadFile: (client: Client, data: fs.ReadStream, metadata: { name: string; contentType: string; }) => Promise; updateJsCustomize: (client: Client, app: string, fileKey: string) => Promise; deployApp: (client: Client, app: string) => Promise; addDemoRecord: (client: Client, app: string, fileName: string) => Promise; }; export {};