/**
 * SPDX-FileCopyrightText: © 2025 Liferay, Inc. <https://liferay.com>
 * SPDX-License-Identifier: BSD-3-Clause
 */
declare type FocusMenuProps<T> = {
    children: T;
    condition: boolean;
    onRender: () => void;
};
export declare function FocusMenu<T>({ children, condition, onRender, }: FocusMenuProps<T>): T;
export {};
