import type { DialogTriggerEvent } from "@vibe/dialog"; export declare const DIALOG_MOVE_BY: { main: number; secondary: number; }; export declare const DEFAULT_DIALOG_SHOW_TRIGGER: DialogTriggerEvent[]; export declare const DEFAULT_DIALOG_HIDE_TRIGGER: DialogTriggerEvent[]; export declare const SECONDARY_BUTTON_WRAPPER_CLASSNAME = "monday-style-split-button__secondary-button-wrapper"; export declare const EMPTY_ARR: string[]; export declare const ENTER_KEYS: string[]; export declare const DialogPosition: { readonly BOTTOM: "bottom"; readonly BOTTOM_START: "bottom-start"; readonly BOTTOM_END: "bottom-end"; }; export declare const SplitButtonSecondaryContentPosition: { readonly BOTTOM_START: "bottom-start"; readonly BOTTOM_MIDDLE: "bottom"; readonly BOTTOM_END: "bottom-end"; }; export type SplitButtonSecondaryContentPositionType = (typeof SplitButtonSecondaryContentPosition)[keyof typeof SplitButtonSecondaryContentPosition]; export declare const SECONDARY_BUTTON_ARIA_LABEL = "additional actions";