import type { PermissionRelation } from '../permission';
import type { Robot } from '../robot';
import type { Realm } from '../realm';
export interface RobotPermission extends PermissionRelation {
    id: string;
    created_at: Date;
    updated_at: Date;
    robot_id: string;
    robot: Robot;
    robot_realm_id: Realm['id'] | null;
    robot_realm: Realm | null;
}
//# sourceMappingURL=entity.d.ts.map