import React, { type ReactNode } from 'react';
interface ValueChangedProps {
    value: any;
    onChange: Function;
    children: ReactNode;
}
export default class ValueChanged extends React.Component<ValueChangedProps> {
    componentDidUpdate(prevProps: ValueChangedProps): void;
    render(): React.ReactNode;
}
export {};
