import * as React from "react"; interface IProps extends React.HTMLAttributes { indent?: boolean; } export default function FieldError({ children, indent, ...rest }: IProps): import("react/jsx-runtime").JSX.Element | null; export {};