export interface LoadingOptions { outlet?: { classList?: string[]; style?: string; }; loaders: Loader[]; } export interface Loader { type: string; shape: string; row: number; classList?: string[]; style?: string; modifiers?: string; counts?: string; ariaLabel?: string; }