import { InjectionToken } from '@angular/core'; export type VudIconType = 'standard' | 'dynamic'; export interface VudIconConfig { /** * Defines the global type of the icons: standard or dynamic. * * @default `standard` */ type?: VudIconType; } export declare const VUD_DEFAULT_ICON_CONFIG: { readonly type: "standard"; }; /** InjectionToken for icon that can be used to override default options. */ export declare const VUD_ICON_CONFIG: InjectionToken;