import { KendoComponent } from '../_types/component';
export declare const APPBAR_CLASSNAME = "k-appbar";
declare const options: {
    themeColor: ("base" | "inverse" | "primary" | "secondary" | "tertiary" | undefined)[];
};
export type KendoAppbarOptions = {
    themeColor?: (typeof options.themeColor)[number] | null;
};
export type KendoAppbarProps = KendoAppbarOptions & {
    positionMode?: 'static' | 'sticky' | 'fixed';
    position?: 'top' | 'bottom';
};
export declare const Appbar: KendoComponent<KendoAppbarProps & React.HTMLAttributes<HTMLDivElement>>;
export default Appbar;
