import * as React from "react"; declare type Props = { onAccept: () => void; }; declare type State = { accepted: boolean; }; declare class CookiesConsent extends React.PureComponent { state: { accepted: boolean; }; handleAccept: () => void; render(): JSX.Element | null; } export default CookiesConsent;