import { NameAnd } from "@focuson/utils";
export interface HideButtonsAndRestOnTopProps {
    children: JSX.Element | JSX.Element[];
    hide: string[];
    buttons: NameAnd<JSX.Element>;
}
export declare function HideButtonsAndRestOnTopLayout({ children, hide, buttons }: HideButtonsAndRestOnTopProps): import("react/jsx-runtime").JSX.Element;
