export interface Props { isFrozen: boolean; size: number; dotColor?: string; style?: React.CSSProperties; } export declare function RippleDots({ size, dotColor, style, isFrozen }: Props): import("react/jsx-runtime").JSX.Element;