import type { PropsWithChildren } from "react"; declare type FormRowProps = { hasError?: boolean; }; export default function FormRow({ children, hasError, }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; export {};