import type { Generic } from 'adopted-style-sheets'; import type { PropAlt, PropImageSizes, PropImageSource, PropImageSrcset, PropLoading } from '../props'; type RequiredProps = PropAlt & PropImageSource; type OptionalProps = PropLoading & PropImageSizes & PropImageSrcset; type RequiredStates = RequiredProps & PropLoading; type OptionalStates = PropImageSizes & PropImageSrcset; export type ImageProps = Generic.Element.Members; export type ImageStates = Generic.Element.Members; export type ImageAPI = Generic.Element.ComponentApi; export {};