import React from "react"; interface AppBarProps { className?: string; shadow?: number; position?: "static" | "fixed" | "sticky" | "absolute" | "bottom"; color?: "" | "inherit" | "default" | "primary" | "secondary" | "shell"; prominent?: boolean; prominentSize?: "sm" | "md" | "lg"; children?: any; [x: string]: any; } export declare const AppBar: ({ className, shadow, position, color, prominent, prominentSize, children, ...props }: AppBarProps) => React.JSX.Element; export {};