import React from 'react'; import './style.scss'; export interface SettingsPanelProps { /** Panel title */ title?: string; /** Panel content */ children: React.ReactNode; /** Whether the panel is collapsible */ collapsible?: boolean; /** Default expanded state (for collapsible panels) */ defaultExpanded?: boolean; /** Custom className */ className?: string; /** Show border around panel */ bordered?: boolean; } export declare const SettingsPanel: React.FC; //# sourceMappingURL=SettingsPanel.d.ts.map