import type { Client } from '../client';
import type { Realm } from '../realm';
import type { User } from '../user';
export interface Robot {
    id: string;
    secret: string;
    name: string;
    display_name: string | null;
    description: string;
    active: boolean;
    created_at: Date;
    updated_at: Date;
    user_id: User['id'] | null;
    user: User | null;
    client_id: Client['id'] | null;
    client: Client | null;
    realm_id: Realm['id'];
    realm: Realm;
}
//# sourceMappingURL=entity.d.ts.map