import type { ProgressRootProps, ProgressRootEmits } from 'reka-ui'; import type { VNode } from 'vue'; import type { AppConfig } from '@nuxt/schema'; import theme from '#build/b24ui/progress'; import type { ComponentConfig } from '../types/tv'; type Progress = ComponentConfig; export interface ProgressProps extends Pick { /** * The element or component this component should render as. * @defaultValue 'div' */ as?: any; /** * The maximum progress value */ max?: number | Array; /** * Display the current progress value */ status?: boolean; /** * Whether the progress is visually inverted * @defaultValue false */ inverted?: boolean; /** * @defaultValue 'md' */ size?: Progress['variants']['size']; /** * @defaultValue 'air-primary' */ color?: Progress['variants']['color']; /** * The orientation of the progress bar. * @defaultValue 'horizontal' */ orientation?: Progress['variants']['orientation']; /** * @defaultValue 'loading' */ animation?: Progress['variants']['animation']; class?: any; b24ui?: Progress['slots']; } export interface ProgressEmits extends ProgressRootEmits { } export type ProgressSlots = { status?(props: { percent?: number; }): VNode[]; } & { [key: string]: (props: { step: number; }) => VNode[]; }; declare const _default: typeof __VLS_export; export default _default; declare const __VLS_export: __VLS_WithSlots any; "update:max": (value: number) => any; }, string, import("vue").PublicProps, Readonly & Readonly<{ "onUpdate:modelValue"?: ((value: string[] | undefined) => any) | undefined; "onUpdate:max"?: ((value: number) => any) | undefined; }>, { inverted: boolean; orientation: Progress["variants"]["orientation"]; modelValue: number | null; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProgressSlots>; type __VLS_WithSlots = T & { new (): { $slots: S; }; };