import type { RecordSchema } from "../types/schema"; import type { KintoneRestAPIClient } from "@kintone/rest-api-client"; import { getAllRecords } from "./get/getAllRecords"; import type { LocalRecordRepository } from "./interface"; export declare const NO_RECORDS_WARNING = "No records exist in the app or match the condition."; export declare const getRecords: (apiClient: KintoneRestAPIClient, app: string, recordDestination: LocalRecordRepository, schema: RecordSchema, options: { condition?: string; orderBy?: string; attachmentsDir?: string; }, getAllRecordsFn?: typeof getAllRecords) => Promise;