import type { Generic } from 'adopted-style-sheets'; export declare const quoteVariantOptions: readonly ["block", "inline"]; export type QuoteVariantPropType = (typeof quoteVariantOptions)[number]; export type PropVariantQuote = { variant: QuoteVariantPropType; }; export declare const validateVariantQuote: (component: Generic.Element.Component, value?: QuoteVariantPropType) => void;