import React from 'react';
interface ProtectionLayerProps {
    isVisible: boolean;
    onRestore: () => void;
    reason?: 'focus' | 'command' | 'printscreen';
}
export default function ProtectionLayer({ isVisible, onRestore, reason }: ProtectionLayerProps): React.JSX.Element | null;
export {};
