import { PropsWithChildren } from 'react'; declare type InputWrapperProps = PropsWithChildren<{ attribute?: string; label?: string; isBold?: boolean; }>; export declare const FormInputWrapper: ({ attribute, label, children, isBold }: InputWrapperProps) => JSX.Element; export {};