import type { StyleProp, ViewStyle, ColorValue } from 'react-native'; import type { SpinnerOptionsProp } from '../components'; declare const DEFAULT_COLOR_WHITE: ColorValue; declare const DEFAULT_ANIMATION_TYPE: string; declare const defaulButtonWidth: number; declare const defaulButtonHeight: number; declare const getSpinnerStyle: (buttonStyle: StyleProp, defaultStyle: StyleProp) => { height: number; }; declare const getWaveFactorAndMode: (spinnerOptions: SpinnerOptionsProp | undefined) => SpinnerOptionsProp; export { defaulButtonWidth, defaulButtonHeight, DEFAULT_COLOR_WHITE, DEFAULT_ANIMATION_TYPE, getSpinnerStyle, getWaveFactorAndMode, };