declare class PlaySlider extends React.PureComponent { constructor(props: any); intervalMilliseconds: number; increment: any; onChange(event: any): void; play(): void; pause(): void; stepBackward(): void; stepForward(): void; getPlayClass(): "fa fa-play fa-lg slider-button" | "fa fa-pause fa-lg slider-button"; formatter(values: any): any; } declare namespace PlaySlider { export { propTypes }; export { defaultProps }; } export default PlaySlider; import React from "react"; declare namespace propTypes { const start: PropTypes.Validator; const step: PropTypes.Validator; const end: PropTypes.Validator; const values: PropTypes.Validator; const onChange: PropTypes.Requireable<(...args: any[]) => any>; const loopDuration: PropTypes.Requireable; const maxFrames: PropTypes.Requireable; const orientation: PropTypes.Requireable; const reversed: PropTypes.Requireable; const disabled: PropTypes.Requireable; const range: PropTypes.Requireable; } declare namespace defaultProps { export function onChange_1(): void; export { onChange_1 as onChange }; const loopDuration_1: number; export { loopDuration_1 as loopDuration }; const maxFrames_1: number; export { maxFrames_1 as maxFrames }; const orientation_1: string; export { orientation_1 as orientation }; const reversed_1: boolean; export { reversed_1 as reversed }; const disabled_1: boolean; export { disabled_1 as disabled }; const range_1: boolean; export { range_1 as range }; } import PropTypes from "prop-types"; //# sourceMappingURL=PlaySlider.d.ts.map