import { PropsWithChildren } from 'react'; declare type Props = PropsWithChildren<{ id: string; label?: string; isLabelHorizontal?: boolean; className?: string; }>; export declare const NodeInputWrapper: ({ id, label, isLabelHorizontal, children, className }: Props) => JSX.Element; export {};