@focuson/form_components
Version:
Components that can be used by @focuson/forms
8 lines (7 loc) • 345 B
TypeScript
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;