export declare class StereoScope { speed: number; showImage: number; speedHalf: number; i: number; showSpeedRange: string; imageOne: string; imageTwo: string; render(): JSX.Element; componentWillLoad(): void; componentDidLoad(): void; componentWillUpdate(): void; /** * The component finished updating. * * Called after componentWillUpdate */ componentDidUpdate(): void; /** * The component did unload and the element will be destroyed. */ componentDidUnload(): void; loadImage(url: any): Promise<{}>; speedChanged(e: UIEvent): void; animateMe(): void; }