import React, { type ComponentProps } from 'react'; import CollapsiblePanel from '@splunk/react-ui/CollapsiblePanel'; export declare const isPadded: import("styled-components").FlattenInterpolation, any>>; /** SUI Panel props, less what UDF overrides and the change handlers (bug in 4.28 types and unions with `never`) */ type CollapsiblePanelProps = Omit, 'onChange' | 'onRequestOpen' | 'onRequestClose' | 'open'>; export type SidebarCollapsiblePanelProps = CollapsiblePanelProps & { padded?: boolean; panelId: string; }; export declare const SidebarCollapsiblePanel: ({ children, padded, panelId, defaultOpen, ...rest }: SidebarCollapsiblePanelProps) => React.JSX.Element; export {}; //# sourceMappingURL=SidebarCollapsiblePanel.d.ts.map