import React from 'react'; import { CSS } from '../theme/stitches.config'; import { ProgressVariantsProps } from './progress.styles'; interface Props { value: number; striped?: boolean; animated?: boolean; indeterminated?: boolean; shadow?: boolean; max?: number; min?: number; css?: CSS; as?: keyof JSX.IntrinsicElements; } declare const defaultProps: { striped: boolean; animated: boolean; shadow: boolean; indeterminated: boolean; value: number; min: number; max: number; }; declare type NativeAttrs = Omit & React.HTMLAttributes>, keyof Props>; export declare type ProgressProps = Props & typeof defaultProps & NativeAttrs & ProgressVariantsProps; declare const _default: React.ComponentType & Omit, "shadow" | "max" | "value" | "animated" | "min" | "indeterminated" | "striped">>; export default _default;