import type { Generic } from 'adopted-style-sheets';
import type { ButtonProps, MsgPropType, PropAccessKey, PropDisabled, PropHasCounter, PropHideLabel, PropHideMsg, 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 & PropDisabled & PropHasCounter & PropHideMsg & PropHideLabel & PropHorizontalIcons & PropReadOnly & PropRequired & PropShortKey & PropSuggestions & PropSyncValueBySelector & PropTooltipAlign & PropTouched;
export type Props = Generic.Element.Members<RequiredProps, OptionalProps>;
export {};
