import { JSONSchema, ValidateFunction } from '../../validation'; import { Avatar } from './avatar'; /** * Profile containing one or multiple avatars * @alpha */ export type Profile = { avatars: Avatar[]; }; /** * Profile * @alpha */ export declare namespace Profile { const schema: JSONSchema; const validate: ValidateFunction; } //# sourceMappingURL=profile.d.ts.map