import { ElementType, FC, ReactNode } from 'react'; import { BoxProps } from '@mui/material'; export interface FooterSectionContactProps extends BoxProps { /** * Items that should be rendered in left side */ contactSlot?: ReactNode; /** * Properties applied to the contact wrapper */ contactSlotProps?: BoxProps; /** * Items that should be rendered in right side */ socialSlot?: ReactNode; /** * Properties applied to the social wrapper */ socialSlotProps?: BoxProps; } /** * Section for the main contact links and social media */ export declare const FooterSectionContact: FC;