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