import React from 'react';
export interface DebugLayerProps {
    variant?: 'default' | 'clipped';
    className?: string;
}
declare const DebugLayer: React.FC<DebugLayerProps>;
export default DebugLayer;
