import { FC, ReactNode } from 'react';
export interface ControlPanelProps {
    position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
    className?: string;
    children: ReactNode;
    orientation?: 'horizontal' | 'vertical';
    spacing?: 'tight' | 'normal' | 'loose';
    background?: 'solid' | 'blur' | 'transparent';
}
/**
 * ControlPanel component for organizing control elements
 * Provides consistent styling and positioning for control groups
 */
export declare const ControlPanel: FC<ControlPanelProps>;
//# sourceMappingURL=ControlPanel.d.ts.map