export declare class CommandParam { /** * Name of the command, i.e.: !ping or >hellow */ name: string; /** * Command description -- used with the help command and during validation error(s) (optional). */ description?: string; /** * Determine if this parameter is required (optional). */ required?: boolean; /** * Regular expression pattern for validating this parameter (optional). */ pattern?: string; /** * Initial default value (optional). */ value?: string; }