import type { AgentModelRequirements } from '../../book-2.0/agent-source/AgentModelRequirements';
import { BaseCommitmentDefinition } from '../_base/BaseCommitmentDefinition';
/**
 * OPEN commitment definition
 *
 * The OPEN commitment specifies that the agent can be modified by conversation.
 * This is the default behavior.
 *
 * Example usage in agent source:
 *
 * ```book
 * OPEN
 * ```
 *
 * @private [🪔] Maybe export the commitments through some package
 */
export declare class OpenCommitmentDefinition extends BaseCommitmentDefinition<'OPEN'> {
    constructor();
    /**
     * Short one-line description of OPEN.
     */
    get description(): string;
    /**
     * Icon for this commitment.
     */
    get icon(): string;
    /**
     * Markdown documentation for OPEN commitment.
     */
    get documentation(): string;
    applyToAgentModelRequirements(requirements: AgentModelRequirements, _content: string): AgentModelRequirements;
}
