import { HTMLProps } from 'react'; export interface CommonWidgetProps extends HTMLProps { helpText?: string; label?: string; name: string; onlyInput?: boolean; } export declare const commonDefaultProps: { helpText: string; label: string; onlyInput: boolean; };