import { IRequestOptions, IResponse } from './interfaces';
export declare const post: <T>(url: string, options?: IRequestOptions | undefined) => Promise<IResponse<Error> | IResponse<T>>;
export default post;
