import { Entity } from './entity'; import { Profile } from './profile'; export declare class User implements Entity { attributes: Profile; id: string; type: string; links?: { self: string; }; }