import type { Generic } from 'adopted-style-sheets'; import type { PropHref, PropLabel, PropVariantQuote } from '../props'; type RequiredProps = { quote: string; } & PropHref; type OptionalProps = PropLabel & PropVariantQuote; type RequiredStates = { quote: string; } & PropHref & PropVariantQuote; type OptionalStates = PropLabel; export type QuoteProps = Generic.Element.Members; export type QuoteStates = Generic.Element.Members; export type QuoteAPI = Generic.Element.ComponentApi; export {};