import { type ClassValue } from '../../utils/cx'; export interface IComponents { label: string; className?: string; name: string; type: string; children?: IComponents[]; quickEdit?: boolean; quickStatic?: boolean; quickStaticStr?: boolean; staticPlaceholder?: string; options?: [] | string; components?: IComponents[]; } export interface ITypeComponents { className?: ClassValue; option?: any; } declare const Row: any; export default Row;