import React, { ElementType, FC } from 'react'; import { BoxProps, ButtonProps, TypographyProps } from '@mui/material'; export interface FooterSectionLinksProps extends BoxProps { /** * Text wrapped by styled Typography component */ textSlot?: React.ReactNode; /** * Properties applied to text typography */ textTypographyProps?: TypographyProps; /** * Alternative to providing button props */ buttonSlot?: React.ReactNode; /** * Properties applied to button wrapper */ buttonSlotProps?: BoxProps; /** * Props for button */ buttonProps?: ButtonProps & { label?: React.ReactNode; }; /** * Properties applied to link container */ linksWrapperProps?: BoxProps; } /** * Section for the secondary links, copyright and optional button */ export declare const FooterSectionLinks: FC;