import React, { Component, ReactNode } from 'react'; import { ReactComponentLike } from 'prop-types'; declare type TDeselectAllButton = { children: ReactNode; component?: ReactComponentLike; className?: string; [key: string]: any; }; declare class DeselectAllButton extends Component { static contextType: React.Context; root: HTMLDivElement | null; componentDidMount(): void; getRootRef: (ref: import("./utils").Maybe) => void; render(): JSX.Element; } export default DeselectAllButton;