import { PropTypes, StandardProps } from '..'; import { PaperProps, PaperClassKey } from '../Paper'; export interface AppBarProps extends StandardProps { color?: PropTypes.Color; position?: 'fixed' | 'absolute' | 'sticky' | 'static'; } export type AppBarClassKey = | PaperClassKey | 'positionFixed' | 'positionAbsolute' | 'positionSticky' | 'positionStatic' | 'colorDefault' | 'colorPrimary' | 'colorSecondary'; declare const AppBar: React.ComponentType; export default AppBar;