import { ParsableDefinition } from"./ParsableDefinition";
/** @category Definition */exportdeclaretypeArgDefinition = ParsableDefinition & {
/** If set to true, this argument can be omitted. In this case defaultValue is used. (default is false) */readonlyoptional?: boolean;
};