import { AllAPIResponses, UserType } from './../../index'; declare type PostBody = { password: string; username: string; }; export declare const post: (body: PostBody, headers?: Headers | undefined) => Promise>; export default post;