declare const symbol: unique symbol; export type CommandOptions = T & { readonly [symbol]: true; }; export declare function commandOptions(options: T): CommandOptions; export declare function isCommandOptions(options: any): options is CommandOptions; export {};