import { OptionLabel } from './OptionLabel';
/** Your License options */
export interface Option {
    /** Quantity or corresponding label of the designated option enabled on your license */
    amount?: string;
    /** Specifies whether this option can be released or not */
    canBeDeleted: boolean;
    /** This option expiration date */
    expirationDate: string;
    /** This option designation */
    label: OptionLabel;
    /** This option related version */
    version?: string;
}
//# sourceMappingURL=Option.d.ts.map