import { Directive } from 'vue'; /** * Loading directive options */ export interface LoadingOptions { /** Whether to show loading */ visible?: boolean; /** Loading text to display */ text?: string; /** Custom background color (CSS color value) */ background?: string; /** Icon size (CSS size value or number in pixels) */ size?: string | number; /** Whether to show loading as fullscreen */ fullscreen?: boolean; } /** * Loading directive * * @example * ```vue * *
* * * * * * * * * * ``` */ export declare const vTuiLoading: Directive