import type { ReactNode } from 'react';
interface GlobalActionsProps {
    children: ReactNode;
}
declare function GlobalActions({ children }: GlobalActionsProps): JSX.Element;
export default GlobalActions;
