export declare const strokeMiterlimit: 10; export declare const spinnerSizes: readonly ["xxs", "xs", "sm", "md", "lg"]; export declare const spinnerDefaultSize: "md"; export declare const spinnerWidths: { readonly xxs: 16; readonly xs: 20; readonly sm: 40; readonly md: 64; readonly lg: 88; }; export declare const spinnerSizesToDimensions: { readonly xxs: { readonly sideLength: 16; readonly strokeWidth: 2; }; readonly xs: { readonly sideLength: 20; readonly strokeWidth: 2; }; readonly sm: { readonly sideLength: 40; readonly strokeWidth: 4; }; readonly md: { readonly sideLength: 64; readonly strokeWidth: 6; }; readonly lg: { readonly sideLength: 88; readonly strokeWidth: 8; }; }; export declare const baseClassNamePrefix: "bm-spinner", subElementClassPrefix: "bm-spinner__", classModifierPrefix: "bm-spinner--"; export type SIDE_LENGTH = number; export type STROKE_WIDTH = number; export interface GetCircleDimensionsProps { sideLength: SIDE_LENGTH; strokeWidth: STROKE_WIDTH; } export declare const getCircleDimensions: ({ sideLength, strokeWidth, }: GetCircleDimensionsProps) => { readonly sideLength: number; readonly strokeWidth: number; readonly cx: number; readonly cy: number; readonly diameter: number; readonly circumference: number; readonly r: number; readonly viewBox: string; }; export declare const spinnerWrapClassName: "bm-spinner-wrap"; export declare const classNames: { readonly spinnerWrap: "bm-spinner-wrap"; readonly spinnerSvgWrap: "bm-spinner"; readonly spinnerSvgWrapIndeterminate: "bm-spinner--indeterminate"; readonly spinnerSvgWrapDeterminate: "bm-spinner--determinate"; readonly spinnerContentWrapper: "bm-spinner__content-wrapper"; readonly spinnerSvgHeading: "bm-spinner__heading"; readonly spinnerSvgLabelPercentageIndicator: "bm-spinner__percentage-indicator"; readonly spinnerSvg: "bm-spinner__svg"; readonly spinnerSvgCircle: "bm-spinner__circle"; readonly spinnerSvgCircleBg: "bm-spinner__circle-bg"; readonly spinnerBody: "bm-spinner__body"; }; export declare const spinnerSizeClassModifiers: { readonly xxs: "bm-spinner-wrap--xxs"; readonly xs: "bm-spinner-wrap--xs"; readonly sm: "bm-spinner-wrap--sm"; readonly md: "bm-spinner-wrap--md"; readonly lg: "bm-spinner-wrap--lg"; }; export declare const spinnerValueVar: "--bm-spinner-value"; export type SpinnerValuesAsNumbers = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100; export type SpinnerValuesAsStrings = `${SpinnerValuesAsNumbers}`; export type SpinnerValues = number | undefined; export type SpinnerSizes = typeof spinnerSizes[number]; export interface SpinnerSvgProps { size?: SpinnerSizes; value: SpinnerValues; } export declare const checkIfSpinnerIsDetermined: ({ value }: { value: SpinnerValues; }) => boolean;