import type { Generic } from 'adopted-style-sheets'; export declare const progressVariantOptions: readonly ["bar", "cycle"]; export type ProgressVariantPropType = (typeof progressVariantOptions)[number]; export type PropVariantProgress = { variant: ProgressVariantPropType; }; export declare const validateVariantProgress: (component: Generic.Element.Component, value?: ProgressVariantPropType) => void;