import React, { FC } from 'react'; import { SxProps } from '@mui/material'; import { Color, Position } from '../../types/app-bar'; interface AppBarProps { sx?: SxProps; color?: Color; position?: Position; className?: string; children?: React.ReactNode; } export declare const AppBar: FC; export {};