import type { IconName } from '../Icon'; import type { InlineLoaderState, InlineLoaderIntent, InlineLoaderTextSize, InlineLoaderTextSizeName } from './types'; export declare const getTextSizeName: (size: InlineLoaderTextSize) => InlineLoaderTextSizeName; export declare const getIconName: (state: InlineLoaderState) => IconName; export declare const getIconIntent: (state: InlineLoaderState, intent: InlineLoaderIntent) => "inactive" | "primary" | "ai" | "success" | "danger"; export declare const getIconSize: (textSize: InlineLoaderTextSize) => { size: "xxxsmall" | "xsmall" | "small"; styleFontSize?: number; };