import React from "react"; import { ClassificationOptions, SelectBaseClassficationConfig } from "../interfaces"; import { CheckboxClassification } from "../types"; export interface CategoryOptions extends ClassificationOptions { optionsCheckbox?: CheckboxClassification; classNameRowContainer?: string[]; classNameTextFieldContainer?: string[]; classNameLabelTextField?: string[]; labelTextField?: string[]; textFieldPlaceholder?: string; htmlInputOptions?: Record; classNameLabelTextarea?: string[]; placeholderTextarea?: string; regexTextarea?: RegExp; regexTextField?: RegExp; maxLengthTextarea?: number; maxLengthNameCategory?: number; minLengthNameCategory?: number; htmlInputTextareaOptions?: Record; labelTextarea?: string; context_options: SelectBaseClassficationConfig; } export declare const SonataCategory: React.FC; export declare const SelectCategory: React.FC; //# sourceMappingURL=Category.d.ts.map