import { IReachBody, IReachOptions } from '../types';
export declare class ReachBody {
    static get(opts: IReachOptions): FormData | string | undefined;
    static parse(opts: IReachOptions): string | FormData;
    static multipartForm(body: IReachBody, fileKeys?: string[]): FormData;
    static encodedForm(body: IReachBody): string;
}
