import { OnInit } from '@angular/core'; import { Styles, Theme } from '../../types/index'; import { Ground, GroundProps } from '../ground/index'; declare type BackgroundColorProp = 'default' | 'inherit' | 'primary' | 'secondary' | 'transparent'; declare type PositionProp = 'absolute' | 'fixed' | 'relative' | 'static'; export interface AppBarProps extends GroundProps { backgroundColor?: BackgroundColorProp; position?: PositionProp; } export declare const AppBarClassKey: string; export declare type AppBarClasses = 'root' | 'backgroundColorDefault' | 'backgroundColorPrimary' | 'backgroundColorSecondary' | 'backgroundColorInherit' | 'backgroundColorTransparent' | 'positionFixed' | 'positionAbsolute' | 'positionStatic' | 'positionRelative'; export declare function AppBarStyles(theme: Theme): Styles; export declare class AppBar extends Ground implements OnInit { backgroundColor: BackgroundColorProp; position: PositionProp; ngOnInit(): void; composeClasses(): void; } export {};