export type LoadingType = "dotted" | "columnar" | "circular" | "sphere" | "round"; export interface LoadingOptions { img?: string; type?: LoadingType; vertical?: boolean; overlayClass?: string | Array | object; overlayStyle?: object; backdropDismiss?: boolean; }