import { type FunctionalComponent as FC } from '../../stencil-public-runtime'; import type { JSXBase, VNode } from '../../stencil-public-runtime'; import { type MsgPropType, type Stringified } from '../../schema'; type InputAdornmentType = VNode | VNode[] | null; export type InputContainerProps = JSXBase.HTMLAttributes & { startAdornment?: InputAdornmentType; endAdornment?: InputAdornmentType; disabled?: boolean; msg?: Stringified; touched?: boolean; containerProps?: JSXBase.HTMLAttributes; startAdornmentProps?: JSXBase.HTMLAttributes; endAdornmentProps?: JSXBase.HTMLAttributes; }; declare const KolInputContainerFc: FC; export default KolInputContainerFc;