import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Progress = "ax-progress"; type ProgressProps = BoxProps & { "asChild"?: false | true; "as-child"?: false | true; "max"?: number; "value"?: number; "getValueLabel"?: (value: number, max: number) => string; "get-value-label"?: (value: number, max: number) => string; "intent"?: "danger" | "primary" | "success" | "opal"; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [Progress]: ProgressProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof ProgressProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Progress]: ProgressProps & Omit<(ComponentPropsWithoutRef<"div">), keyof ProgressProps>; } } } export { Progress }; export type { ProgressProps };