/// import { StudioPanelHeaderProps, StudioLayoutPanelPropsConfig } from './types/StudioPanelSchema'; import { CommonStudioLayoutProps } from './types'; export type { StudioPanelResizableProps } from './types/StudioPanelSchema'; export interface StudioPanelProps extends CommonStudioLayoutProps { classNameAccordion?: string; classNameAccordionContent?: string; } export declare const resolveHeader: (header?: StudioPanelProps['header'], def?: StudioPanelHeaderProps) => { label?: string | undefined; collapsible?: boolean | undefined; collapsed?: boolean | undefined; commandItems?: any[] | undefined; icon?: string | undefined; style?: import("react").CSSProperties | undefined; className?: string | undefined; }; export declare const StudioPanel: import("react").NamedExoticComponent; export default StudioPanel;