/// import { GridProps } from '@mui/material/Grid'; interface FixedFooterProps { children?: any; justifyContent?: GridProps['justifyContent']; } export default function FixedFooter({ children, justifyContent, }: FixedFooterProps): JSX.Element; export {};