/**
 * This interface holds all fragments which describes a
 * system option object.
 */
export interface ISystemOption {
    /**
     * Category of option
     */
    category: string;
    /**
     * Key of option
     */
    key: string;
    /**
     * Value of option
     */
    value?: string;
}
//# sourceMappingURL=ISystemOption.d.ts.map