import type { Generic } from 'adopted-style-sheets'; import type { MsgPropType, PropAccessKey, PropDisabled, PropHideLabel, PropHideMsg, PropHint, PropHorizontalIcons, PropId, PropLabelWithExpertSlot, PropMsg, PropMultiple, PropName, PropRequired, PropShortKey, PropSyncValueBySelector, PropTouched } from '../props'; import type { InputTypeOnDefault, KoliBriHIcons, Stringified } from '../types'; import type { InternalButtonProps } from './button'; type RequiredProps = PropLabelWithExpertSlot; type OptionalProps = { accept: string; msg: Stringified; on: InputTypeOnDefault; smartButton: Stringified; } & PropAccessKey & PropDisabled & PropHideMsg & PropHideLabel & PropHint & PropHorizontalIcons & PropMultiple & PropName & PropRequired & PropShortKey & PropSyncValueBySelector & PropTouched; type RequiredStates = PropId & PropLabelWithExpertSlot & PropHideMsg; type OptionalStates = { accept: string; on: InputTypeOnDefault; smartButton: InternalButtonProps; } & PropAccessKey & PropDisabled & PropHideLabel & PropHint & KoliBriHIcons & PropMsg & PropMultiple & PropName & PropRequired & PropShortKey & PropTouched; export type InputFileProps = Generic.Element.Members; export type InputFileStates = Generic.Element.Members; export type InputFileWatches = Generic.Element.Watchers; export type InputFileAPI = Generic.Element.ComponentApi; export {};