import React from 'react'; import type { DefaultProps } from '../../types'; import type { AppBarProps } from '@mui/material/AppBar'; export interface HeaderProps extends DefaultProps, AppBarProps { position?: 'absolute' | 'fixed' | 'static' | 'sticky'; color?: 'default' | 'inherit' | 'primary' | 'secondary'; square?: boolean; elevation?: number; } declare const Header: ({ children, padding, margin, style, elevation, ...otherProps }: HeaderProps) => React.JSX.Element; export default Header;