export type ValidationStatus = 'invalid';
type Props = {
    /**
     * The validation status to display.
     */
    status?: ValidationStatus;
    /**
     * Custom class name for the component.
     */
    className?: string;
};
/**
 * A component that displays a visual indicator based on validation status.
 */
export declare function Status({ status, className }: Props): import("react/jsx-runtime").JSX.Element | null;
export {};
