import React from 'react'; type Props = { children: React.ReactElement<{ ref?: React.Ref; }>; state?: {}; }; export declare class ClassStateMock extends React.Component { static cosmosCapture: boolean; childRef: React.Component | null; render(): React.ReactElement<{ ref?: React.Ref; }, string | React.JSXElementConstructor>; componentDidUpdate(prevProps: Props): void; handleRef: (childRef: React.Component | null) => void; } export {};