@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
27 lines (26 loc) • 1.22 kB
TypeScript
import type { ProgressFactory, ProgressProps, ProgressStylesNames } from './Progress';
import type { ProgressContextValue } from './Progress.context';
import type { ProgressLabelProps } from './ProgressLabel/ProgressLabel';
import type { ProgressRootProps } from './ProgressRoot/ProgressRoot';
import type { ProgressSectionProps } from './ProgressSection/ProgressSection';
export { Progress } from './Progress';
export { ProgressLabel } from './ProgressLabel/ProgressLabel';
export { ProgressRoot } from './ProgressRoot/ProgressRoot';
export { ProgressSection } from './ProgressSection/ProgressSection';
export { useProgressContext } from './Progress.context';
export type { ProgressProps, ProgressFactory, ProgressStylesNames, ProgressLabelProps, ProgressRootProps, ProgressSectionProps, ProgressContextValue, };
export declare namespace Progress {
type Props = ProgressProps;
type Factory = ProgressFactory;
type StylesNames = ProgressStylesNames;
type ContextValue = ProgressContextValue;
namespace Label {
type Props = ProgressLabelProps;
}
namespace Root {
type Props = ProgressRootProps;
}
namespace Section {
type Props = ProgressSectionProps;
}
}