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<MsgPropType>;
    touched?: boolean;
    containerProps?: JSXBase.HTMLAttributes<HTMLDivElement>;
    startAdornmentProps?: JSXBase.HTMLAttributes<HTMLDivElement>;
    endAdornmentProps?: JSXBase.HTMLAttributes<HTMLDivElement>;
};
declare const KolInputContainerFc: FC<InputContainerProps>;
export default KolInputContainerFc;
