export declare const TOOLBARPOPUP_CLASSNAME = "k-toolbar-popup";
declare const options: {
    size: ("small" | "medium" | "large")[];
    fillMode: ("flat" | "outline" | "solid")[];
};
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: {
    (props: KendoToolbarPopupProps & React.HTMLAttributes<HTMLElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {
        size: ("small" | "medium" | "large")[];
        fillMode: ("flat" | "outline" | "solid")[];
    };
    className: string;
    defaultOptions: {
        size: "medium";
        fillMode: "solid";
    };
};
export default ToolbarPopup;
