import { ContentConfigSelectOption } from './content-config-select-option'; import { ContentConfigOptionType } from './content-config-option-type'; export declare class ContentConfigOption { private _key; private _name; private _type; private _options; private _isRequired; private _value; private _hint; constructor(key: string, name: string, type: ContentConfigOptionType, isRequired?: boolean, options?: ContentConfigSelectOption[], hint?: string, value?: any); readonly name: string; readonly key: string; readonly type: ContentConfigOptionType; readonly options: ContentConfigSelectOption[]; readonly isRequired: boolean; value: any; readonly hint: string; }