export declare type Coordinates = { x: number; y: number; }; interface AnimatedCircleProps { animatedCircleCoords: Coordinates; animating: boolean; } export declare const AnimatedCircle: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, AnimatedCircleProps, never>; interface AnimatedRaisedHandContainerProps { animatedHandCoords: Coordinates; animating: boolean; } export declare const AnimatedRaisedHandContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, AnimatedRaisedHandContainerProps, never>; export {};