import { GenericFilehandle, FilehandleOptions } from './filehandle';
export * from './filehandle';
declare function fromUrl(source: string, opts?: FilehandleOptions): GenericFilehandle;
declare function open(maybeUrl?: string, maybePath?: string, maybeFilehandle?: GenericFilehandle, opts?: FilehandleOptions): GenericFilehandle;
export { open, fromUrl };
export { default as BlobFile } from './blobFile';
export { default as RemoteFile } from './remoteFile';
export { default as LocalFile } from './localFile';
export { type GenericFilehandle } from './filehandle';
