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