import { KendoComponent } from '../_types/component';
export declare const TOOLBARPOPUP_CLASSNAME = "k-toolbar-popup";
declare const options: {
    size: ("small" | "medium" | "large" | undefined)[];
    fillMode: ("flat" | "outline" | "solid" | undefined)[];
};
export type KendoToolbarPopupOptions = {
    size?: (typeof options.size)[number] | null;
    fillMode?: (typeof options.fillMode)[number] | null;
};
export type KendoToolbarPopupProps = KendoToolbarPopupOptions & {
    section?: boolean;
};
export declare const ToolbarPopup: KendoComponent<KendoToolbarPopupProps & React.HTMLAttributes<HTMLElement>>;
export default ToolbarPopup;
