export declare const APPBAR_CLASSNAME = "k-appbar";
declare const options: {
    themeColor: ("base" | "error" | "inverse" | "inherit" | "success" | "dark" | "light" | "primary" | "secondary" | "tertiary" | "info" | "warning")[];
};
export type KendoAppbarOptions = {
    themeColor?: (typeof options.themeColor)[number] | null;
};
export type KendoAppbarProps = KendoAppbarOptions & {
    positionMode?: 'static' | 'sticky' | 'fixed';
    position?: 'top' | 'bottom';
};
export declare const Appbar: {
    (props: KendoAppbarProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {
        themeColor: ("base" | "error" | "inverse" | "inherit" | "success" | "dark" | "light" | "primary" | "secondary" | "tertiary" | "info" | "warning")[];
    };
    className: string;
    defaultOptions: {};
};
export default Appbar;
