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