import React, { ReactNode } from 'react'; import { AccordionProps as MUIAccordionProps, TypographyProps } from '@mui/material'; import { StringTranslation } from '../../../types'; interface RossiniAccordionProps { /** * The title of the accordion. */ title: StringTranslation | string; /** * MUI Typography props for the title. */ titleProps?: Partial; /** * The subtitle of the accordion. */ subtitle?: StringTranslation | string; /** * MUI Typography props for the title. */ subtitleProps?: Partial; /** * The icon to be shown next to the title. */ icon?: ReactNode; /** * The tooltip string to be shown on hover. */ tooltip?: string; /** * The icon linked to the Accordion opening and closing. */ expandIcon?: ReactNode; } export type AccordionProps = RossiniAccordionProps & Omit; declare const Accordion: React.FC; export default Accordion; //# sourceMappingURL=Accordion.d.ts.map