import { BaseTypeProps } from '../utils'; export interface LoadingProps extends BaseTypeProps { state: LoadingStateType; txt?: string; className?: string; } export declare enum LoadingStateType { LOADING = 0, SUCCESS = 1, FAIL = 2 }