import { Endpoint } from '../../types/endpoint'; import { ProjectObject } from '../../types/object'; import { UserObject } from '../../types/object/userObject'; export declare type getUserParameters = { userId: number | 'me'; }; export declare const getUser: Endpoint; export declare type getUserResponse = UserObject; export declare type getUserOAuthsParameters = { userId: number | 'me'; }; export declare const getUserOAuths: Endpoint; export declare type getUserOAuthResponse = { oauths: { id: number; createdAt: Date; project: ProjectObject; }[]; }; export declare type patchUserParameters = { userId?: number | 'me'; currency?: 'KRW'; imageUrl?: string; name?: string; marketingAccept?: Date | null; }; export declare const patchUser: Endpoint; export declare type patchUserResponse = Record; export declare type deleteUserParameters = { userId?: number | 'me'; }; export declare const deleteUser: Endpoint; export declare type deleteUserResponse = Record; //# sourceMappingURL=user.d.ts.map