import { type CompletedFileWithKey, type FileTransferOptions, type FileTransferControl } from "../files"; export interface NamespaceFiles { get: (fileKey?: string) => CompletedFileWithKey | undefined; send: (file: File, options?: FileTransferOptions) => FileTransferControl | undefined; } declare const _default: { get: (fileKey?: string) => CompletedFileWithKey | undefined; send: (file: File, options?: FileTransferOptions) => FileTransferControl | undefined; }; export default _default;