import type React from "react"; import type { SpaceProps } from "styled-system"; type InlineValidationProps = SpaceProps & { className?: string; errorMessage?: string; errorList?: string[]; children?: React.ReactNode; }; export default function InlineValidation({ className, errorMessage, errorList, children, ...boxProps }: InlineValidationProps): import("react/jsx-runtime").JSX.Element; export {};