import React from "react"; import { ViewProps } from "react-native"; export interface IShine extends ViewProps { duration?: number; } export declare class Shine extends React.Component { private animation; constructor(props: IShine); componentDidMount(): void; render(): JSX.Element; private start; }