import * as React from "react"; import type { AppBarOwnProps, PolymorphicWithRef } from "../types"; declare type AppBarProps = PolymorphicWithRef; declare type AppBarElement = (props: AppBarProps) => React.ReactElement>; /** * AppBar component */ declare const AppBar: AppBarElement & { Toolbar: = "div">(props: any) => React.ReactElement>; }; export default AppBar; //# sourceMappingURL=AppBar.d.ts.map