import { FlatfileClient as FernClient } from "../Client"; import type * as core from "../core"; import * as environments from "../environments"; import { Records } from "./RecordsClient"; export declare namespace FlatfileClient { interface Options { /** * @deprecated use apiUrl instead */ environment?: core.Supplier; apiUrl?: environments.FlatfileEnvironment | string; token?: core.Supplier; } } export declare class FlatfileClient extends FernClient { private token; constructor(options?: FlatfileClient.Options); protected _records: Records | undefined; get records(): Records; }