import { type FunctionalComponent as FC } from '../../stencil-public-runtime'; import type { JSXBase } from '../../stencil-public-runtime'; import { type AlignPropType, type LabelAlignPropType, type MsgPropType, type Stringified } from '../../schema'; export type FieldControlProps = Omit, 'id'> & { id: string; hint?: string; label: string; hideLabel?: boolean; labelAlign?: LabelAlignPropType; accessKey?: string; shortKey?: string; tooltipAlign?: AlignPropType; disabled?: boolean; msg?: Stringified; touched?: boolean; required?: boolean; readonly?: boolean; showTooltip?: boolean; renderNoLabel?: boolean; renderNoHint?: boolean; renderNoTooltip?: boolean; fieldControlLabelProps?: JSXBase.HTMLAttributes> & { component?: 'label' | 'legend'; showBadge?: boolean; }; fieldControlInputProps?: JSXBase.HTMLAttributes; fieldControlTooltipProps?: Pick, 'class'>; fieldControlHintProps?: JSXBase.HTMLAttributes; }; declare const KolFieldControlFc: FC; export default KolFieldControlFc;