import { Colors, Variants } from '../../styles'; import * as React from 'react'; export interface AppBarLinkContent { path: string; title: string; id?: string; type: 'redirect' | 'scroll'; color?: Colors; } interface Props { children?: React.ReactNode; links?: AppBarLinkContent[]; color: Colors; variant: Variants; fixed?: boolean; } declare const AppBar: { (props: Props): JSX.Element; defaultProps: { color: string; variant: string; }; }; export default AppBar;