import type { AgentModelRequirements } from '../../book-2.0/agent-source/AgentModelRequirements';
import { BaseCommitmentDefinition } from '../_base/BaseCommitmentDefinition';
/**
 * META AVATAR / META VISUAL commitment type.
 */
type MetaAvatarCommitmentType = 'META AVATAR' | 'META VISUAL';
/**
 * META AVATAR commitment definition
 *
 * The `META AVATAR` and `META VISUAL` commitments set the built-in default avatar visual
 * used when the agent does not provide an explicit `META IMAGE`.
 *
 * @private [🪔] Maybe export the commitments through some package
 */
export declare class MetaAvatarCommitmentDefinition extends BaseCommitmentDefinition<MetaAvatarCommitmentType> {
    constructor(type?: MetaAvatarCommitmentType);
    /**
     * Short one-line description of META AVATAR.
     */
    get description(): string;
    /**
     * Icon for this commitment.
     */
    get icon(): string;
    /**
     * Markdown documentation for META AVATAR commitment.
     */
    get documentation(): string;
    applyToAgentModelRequirements(requirements: AgentModelRequirements, content: string): AgentModelRequirements;
}
export {};
