import { TAttributeInput, TAttributeValue } from '@cromwell/core'; import { BasePageInput } from './base-page.input'; export declare class AttributeInput extends BasePageInput implements TAttributeInput { key: string; title?: string | null; values: AttributeValueInput[]; type: 'radio' | 'checkbox' | 'text_input'; icon?: string; required?: boolean; } export declare class AttributeValueInput implements TAttributeValue { value: string; icon?: string; } //# sourceMappingURL=attribute.input.d.ts.map