export declare const ribbonSliderAlignments: { right: string[]; 'right-down': string[]; 'right-center': string[]; 'right-up': string[]; left: string[]; 'left-down': string[]; 'left-center': string[]; 'left-up': string[]; 'down-left': string[]; 'down-center': string[]; 'down-right': string[]; down: string[]; 'up-left': string[]; 'up-center': string[]; 'up-right': string[]; up: string[]; }; export type RibbonSliderAlignment = keyof typeof ribbonSliderAlignments; export interface RibbonButtonSliderContextType { autoClose: boolean | undefined; menuUniqueId: string; positionAnchor: string; } export declare const RibbonButtonSliderContext: import("react").Context;