11 lines
355 B
TypeScript
11 lines
355 B
TypeScript
/// <reference types="react" />
|
|
import Line from './Line';
|
|
import Circle from './Circle';
|
|
export type { ProgressProps } from './interface';
|
|
export { Line, Circle };
|
|
declare const _default: {
|
|
Line: import("react").FC<import("./interface").ProgressProps>;
|
|
Circle: import("react").FC<import("./interface").ProgressProps>;
|
|
};
|
|
export default _default;
|