export interface PanelTheme { /** Panel background color */ background?: string; /** Panel border/divider color */ border?: string; /** Resize handle color */ handle?: string; /** Resize handle hover color */ handleHover?: string; /** Resize handle active/dragging color */ handleActive?: string; /** Collapse button background */ buttonBackground?: string; /** Collapse button hover background */ buttonHover?: string; /** Collapse button border color */ buttonBorder?: string; /** Collapse button icon color */ buttonIcon?: string; } export declare const defaultLightTheme: PanelTheme; export declare const defaultDarkTheme: PanelTheme; //# sourceMappingURL=theme.d.ts.map