type StatusIndicatorType = 'loading' | 'success' | 'error' | undefined; export declare function useAddressStatusAnimation(inputStatus: StatusIndicatorType): { status: StatusIndicatorType; isVisible: boolean; }; export default useAddressStatusAnimation;