declare const filePartial: {
    partial(args: {
        url: string;
        offsets?: {
            startByte: number;
            endByte: number;
        };
        headers?: Record<string, string>;
    }, callBack: (data: {
        url: string;
        fileArraybuffer: Uint8Array;
        offsets: {
            startByte: number;
            endByte: number;
        };
    }) => void): Promise<void | Error>;
};
export default filePartial;
