import { UserBase } from './userBase';
import { GroupBase } from './groupBase';
import { SerializedData } from '../serialization/json';
export type AiAgentAllowedEntity = UserBase | GroupBase;
export declare function serializeAiAgentAllowedEntity(val: any): SerializedData;
export declare function deserializeAiAgentAllowedEntity(val: SerializedData): AiAgentAllowedEntity;
