import { default as React, ReactNode } from 'react'; export type FooterSummaryProps = { isCollapsible: true; title: ReactNode; content: ReactNode; isDefaultCollapsed?: boolean; onCollapsed?: () => void; onExtended?: () => void; /** * Whether the footerSummary should have opening and closing animation. * Has no effect when prefers-reduced-motion is set * @default false */ noAnimation?: boolean; } | { isCollapsible: false; title?: ReactNode; content: ReactNode; }; export type PanelFooterProps = { /** * The content of the PanelFooter */ children?: ReactNode; /** * Footer summary of the Panel */ footerSummary?: FooterSummaryProps; }; export declare function PanelFooter({ footerSummary, children }: PanelFooterProps): React.JSX.Element; //# sourceMappingURL=PanelFooter.d.ts.map