import { type ReactNode } from 'react';
import type { FormLabelProps } from '../../types';
type Props = {
    label: ReactNode;
    isVisible?: boolean;
    required?: boolean;
    error: boolean;
    formLabelProps?: FormLabelProps;
};
declare const FormLabel: ({ label, isVisible, required, error, formLabelProps }: Props) => import("react/jsx-runtime").JSX.Element;
export default FormLabel;
