import React from 'react'; import { VideoTileView } from '../../../helpers/context'; export declare enum ButtonType { TOOLS = "TOOLS", SHARE_SCREEN = "SHARE_SCREEN", REACT = "REACT", CHAT = "CHAT", CHANGE_LAYOUT = "CHANGE_LAYOUT", OPEN_PIP = "OPEN_PIP", CLOSE_PIP = "CLOSE_PIP", FULL_SCREEN = "FULL_SCREEN", GET_HELP = "GET_HELP", TAKE_TOUR = "TAKE_TOUR", SETTINGS = "SETTINGS" } export declare const VISIBLE_NARROW_L: ButtonType[]; export declare const VISIBLE_MEDIUM_S: ButtonType[]; export declare const moreTools: ({ icon: React.ComponentType>; value: ButtonType; label: string; withDivider: boolean; trailingDetail?: undefined; } | { value: ButtonType; label: string; icon: React.ComponentType>; trailingDetail: React.JSX.Element; withDivider: boolean; })[]; interface UseMoreToolsMenuProps { onClick: (value: ButtonType) => void; } export declare const useMoreToolsMenu: ({ onClick }: UseMoreToolsMenuProps) => { id: ButtonType; menu: React.JSX.Element; subMenu: { id: VideoTileView; divider: boolean; menu: React.JSX.Element; }[] | undefined; }[]; export {}; //# sourceMappingURL=menu.d.ts.map