import type { OptionallyStatefulCommandEntityDiscovery } from "./BaseEntityDiscovery.ts";

export interface TextDiscovery extends OptionallyStatefulCommandEntityDiscovery {
    max?: number;
    min?: number;
    mode?: 'text' | 'password';
    pattern?: string;
}