import * as React from 'react'; import { ParallaxBackgroundProps } from '../types/component'; export interface ParallaxBackgroundState { darken?: string | number; background?: string; } declare class ParallaxBackground extends React.Component { constructor(props: ParallaxBackgroundProps); render(): JSX.Element; private handleDarkenPreviewChange; private commitDarken; private handleBackgroundPreviewChange; private commitBackground; } export default ParallaxBackground; //# sourceMappingURL=index.d.ts.map