import React from 'react'; export interface IAccordionProps { name: string; label: string; labelForShowAction: string; labelForHideAction: string; action?: React.ReactNode; status?: React.ReactNode; children: React.ReactNode; expand?: boolean; } export declare const Accordion: ({ name, label, action, labelForShowAction, labelForHideAction, children, expand }: IAccordionProps) => React.JSX.Element; //# sourceMappingURL=Accordion.d.ts.map