export type InlineLoaderState = 'idle' | 'loading' | 'success' | 'error'; export type InlineLoaderIntent = 'neutral' | 'ai'; export type InlineLoaderTextSize = 10 | 12 | 14 | 16 | 18; export type InlineLoaderTextSizeName = | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';