import React from 'react';
import { OptimizedGlassProps } from '../../primitives/OptimizedGlassCore';
export interface GlassPanelProps extends Omit<OptimizedGlassProps, 'variant' | 'elevation'> {
    /**
     * Panel variant style
     */
    variant?: 'default' | 'primary' | 'success' | 'warning' | 'error';
    /**
     * Panel elevation
     */
    elevation?: 'level1' | 'level2' | 'level3' | 'level4';
    /**
     * Whether the panel is interactive
     */
    interactive?: boolean;
    /**
     * Panel padding
     */
    padding?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
    /**
     * Panel content
     */
    children: React.ReactNode;
}
/**
 * GlassPanel component
 * A glassmorphism panel using the proper PerformantGlass primitive
 */
declare const GlassPanel: React.ForwardRefExoticComponent<GlassPanelProps & React.RefAttributes<HTMLDivElement>>;
export { GlassPanel };
//# sourceMappingURL=glass-panel.d.ts.map