import { FC, ReactNode, ElementType } from 'react'; import { AccordionProps, AccordionSummaryProps, AccordionDetailsProps, TypographyProps } from '@mui/material'; export interface FooterAccordionProps extends Omit { /** * Label of the Accordion */ label?: ReactNode; /** * Props applied to the wrapper of label */ accordionSummaryProps?: AccordionSummaryProps; /** * Props applied to the content of the accodion */ accordionDetailsProps?: AccordionDetailsProps; /** * Properties applied to wrapper of children */ contentProps?: TypographyProps; /** * Variant of accordion * @default compact */ variant?: 'compact' | 'standard'; } /** * Collapsible footer section */ export declare const FooterAccordion: FC;