import { UserType } from '../../../../typings/class-types'; import { BaseObject } from '../../../client'; declare class User extends BaseObject { organizationId: string; skipAuthentication: boolean; constructor(item: UserType); } export { User };