import React from "react"; export interface ConsentProps { title?: string; text?: string; buttonText?: string; onConsent: () => void; } export declare const Consent: React.FC;