import { default as React } from 'react'; export type InputIndicatorProps = React.ComponentPropsWithoutRef<'svg'> & { /** * Whether the input is invalid. */ isValid?: boolean; /** * Whether the input is loading. */ isLoading?: boolean; }; /** This element displays the validation state, e.g. "valid", "loading" */ export declare const Indicator: React.ForwardRefExoticComponent, "ref"> & { /** * Whether the input is invalid. */ isValid?: boolean; /** * Whether the input is loading. */ isLoading?: boolean; } & React.RefAttributes>;