import type { GlobalAttributesT, XstyledProps, ValidationMap } from '@elliemae/ds-props-helpers'; import { type DSTooltipV3T } from '@elliemae/ds-tooltip-v3'; export declare const defaultProps: DSCircularIndeterminateIndicatorT.DefaultProps; export declare namespace DSCircularIndeterminateIndicatorT { type TShirtSizes = 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'; type SupportedColors = 'light' | 'dark'; interface DefaultProps { size: TShirtSizes; color: SupportedColors; text: string; showText: boolean; withTooltip: boolean; inline: boolean; tooltipStartPlacementPreference: DSTooltipV3T.Placement; } interface OptionalProps { } interface RequiredProps { } interface Props extends Partial, OptionalProps, Omit, keyof DefaultProps>, XstyledProps, RequiredProps { } interface InternalProps extends DefaultProps, OptionalProps, Omit, keyof DefaultProps>, XstyledProps, RequiredProps { } } export declare const CircularIndeterminateIndicatorPropTypes: ValidationMap;