import type React from 'react';
import type { FormValidationStatus } from '../utils/types/FormValidationStatus';
import type { FCWithSlotMarker } from '../utils/types';
export type FormControlValidationProps = {
    variant: FormValidationStatus;
    id?: string;
    className?: string;
    style?: React.CSSProperties;
};
declare const FormControlValidation: FCWithSlotMarker<React.PropsWithChildren<FormControlValidationProps>>;
export default FormControlValidation;
//# sourceMappingURL=_FormControlValidation.d.ts.map