import { ActionButtonDropdownItemType } from './enums';
import { ActionButtonDropdownInterface, ActionButtonDropdownOptionProps } from './types';
export declare class ActionButtonDropdownOption implements ActionButtonDropdownInterface {
    id: string;
    type: ActionButtonDropdownItemType;
    label: string;
    icon: string;
    tooltip: string;
    allowed: boolean;
    onClick: () => void;
    /**
     * Returns the option for the action button dropdown
     *
     * @param label - label to be displayed on the option
     * @param icon - icon to be displayed on the option
     * @param tooltip - tooltip to be displayed when hovering over option
     * @param allowed - boolean indicating whether the option should be displayed
     * @param onClick - function to be called when clicking
     *
     * @returns the option to be displayed in the action button dropdown
     */
    constructor({ id, label, icon, tooltip, allowed, onClick, }: ActionButtonDropdownOptionProps);
    setItemId: (id: string) => void;
}
export declare class ActionButtonDropdownSeparator implements ActionButtonDropdownInterface {
    id: string;
    type: ActionButtonDropdownItemType;
    constructor();
    setItemId: (id: string) => void;
}
