/// import { SxProps } from '@mui/material'; import { Theme } from '../../theme/muiTheme'; export interface Props { sx?: SxProps; children: JSX.Element; } declare const StickyBar: ({ sx, children }: Props) => JSX.Element; export { StickyBar };