import React from 'react'; import type { ThemeVars } from '@coinbase/cds-common/core/theme'; import type { HintMotionBaseProps } from './types'; export type ColorSurgeBaseProps = HintMotionBaseProps & { /** * Palette alias of the surge color * @default primary */ background?: ThemeVars.Color; }; export type ColorSurgeRefBaseProps = { play: (background?: ThemeVars.Color) => Promise; }; export type ColorSurgeTypes = ColorSurgeBaseProps; /** * Please consult with the motion team in #ask-motion before using this component. */ export declare const ColorSurge: React.NamedExoticComponent< HintMotionBaseProps & { /** * Palette alias of the surge color * @default primary */ background?: ThemeVars.Color; } & { ref?: React.Ref; } >; //# sourceMappingURL=ColorSurge.d.ts.map