import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class Files extends ClientSDK { /** * Upload a file and link it to the specified Moov account. * * The maximum file size is 20MB. Each account is allowed a maximum of 50 files. Acceptable file types include csv, jpg, pdf, * and png. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/files.write` scope. */ upload(request: operations.UploadFileRequest, options?: RequestOptions): Promise; /** * List all the files associated with a particular Moov account. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/files.read` scope. */ list(request: operations.ListFilesRequest, options?: RequestOptions): Promise; /** * Retrieve file details associated with a specific Moov account. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/files.read` scope. */ get(request: operations.GetFileDetailsRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=files.d.ts.map