import { default as React } from 'react';
import { AnyComponentSchema } from '../../types';
export interface ComponentProps {
    type: AnyComponentSchema['type'] | 'datagrid' | 'datamap' | 'select' | 'columns' | 'textarea';
    field?: string;
    required?: boolean;
    label?: React.ReactNode;
    tooltip?: React.ReactNode;
    htmlId?: string;
    children: React.ReactNode;
    className?: string;
}
declare const Component: React.FC<ComponentProps>;
export default Component;
