import { OptionEnum } from './OptionEnum';
import { OptionStateEnum } from './OptionStateEnum';
/** Information about the options of a dedicated server */
export interface Option {
    /** The option name */
    option: OptionEnum;
    /** The state of the option */
    state: OptionStateEnum;
}
//# sourceMappingURL=Option.d.ts.map