import React from 'react';
interface ConsentBannerProps {
    title?: string;
    description?: string;
    acceptLabel?: string;
    rejectLabel?: string;
    onAccept?: () => void;
    onReject?: () => void;
}
export declare function ConsentBanner({ title, description, acceptLabel, rejectLabel, onAccept, onReject, }: ConsentBannerProps): React.JSX.Element | null;
export {};
