import type { Generic } from 'adopted-style-sheets';
import type { ButtonProps, MsgPropType, PropAccessKey, PropAlert, PropDisabled, PropHasCounter, PropHideError, PropHideLabel, PropHorizontalIcons, PropId, PropLabelWithExpertSlot, PropReadOnly, PropRequired, PropShortKey, PropSuggestions, PropSyncValueBySelector, PropTooltipAlign, PropTouched, Stringified } from '../../schema';
type RequiredProps = PropId & PropLabelWithExpertSlot;
type OptionalProps = {
    currentLength: number;
    hint: string;
    maxLength: number;
    msg: MsgPropType;
    slotName: string;
    smartButton: Stringified<ButtonProps>;
} & PropAccessKey & PropAlert & PropDisabled & PropHasCounter & PropHideError & PropHideLabel & PropHorizontalIcons & PropReadOnly & PropRequired & PropShortKey & PropSuggestions & PropSyncValueBySelector & PropTooltipAlign & PropTouched;
export type Props = Generic.Element.Members<RequiredProps, OptionalProps>;
export {};
