import { default as React } from 'react'; export type CollapsibleListProps = { /** * Whether the CollapsibleList should be collapsed by default. * @default true */ isInitialCollapsed?: boolean; /** * The content of the CollapsibleList, should be CollapsibleListItem(s). */ children: React.ReactNode; /** * Footer of the CollapsibleList. */ footer?: React.ReactNode; /** * className for the element. */ className?: string; /** * Function to render the header of the CollapsibleList. */ renderHeader: (toggle: () => void, isCollapsed: boolean) => React.ReactNode; /** * Whether the CollapsibleList should have opening and closing animation. * Has no effect when prefers-reduced-motion is set * @default false */ noAnimation?: boolean; }; export declare const CollapsibleList: ({ isInitialCollapsed, children, footer, className, renderHeader, noAnimation, }: CollapsibleListProps) => React.JSX.Element; //# sourceMappingURL=CollapsibleList.d.ts.map