import { RecordService } from "pocketbase"; import type Client from "pocketbase"; import type { RecordListOptions } from "pocketbase"; import type { CollectionResponses, Collections } from "./type.js"; export declare class ExtendedRecordService extends RecordService { constructor(client: Client, collectionIdOrName: string); findFirst(filter: string, opts?: Omit): Promise; first(strings: TemplateStringsArray, ...values: unknown[]): Promise; }