import React from 'react';
import { AnyComponentSchema } from '../../types';
import './component.scss';
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;
