import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { SystemProps } from "../system/system.js";
import "../system/index.js";
//#region src/progressCircular/progressCircular.types.d.ts
type ProgressCircularProps = SystemProps & ThemingProps<'ProgressCircular'> & {
  label?: string;
  value?: number;
  showPercentage?: boolean;
};
//#endregion
export { ProgressCircularProps };

//# sourceMappingURL=progressCircular.types.d.ts.map