import { ComponentChildren } from "preact";
import { CSSProperties } from "preact/compat";
type AppBarProps = {
    className?: string;
    children?: ComponentChildren;
    style?: CSSProperties;
    noPadding?: boolean;
};
declare const AppBar: ({ className, style, children, noPadding }: AppBarProps) => import("preact").JSX.Element;
export default AppBar;
