/** * Determines the available loader types. */ export declare type LoaderType = 'bar'; /** * Determines the options of the loader. */ export interface LoaderOptions { /** * Determines the color of the loader. */ color: string; /** * Determines the size of the loader. */ size: [number, number]; /** * Determine the loader type. */ type: LoaderType; /** * Determines the text color of the loader. */ textColor: string; /** * Determine the text to show. */ text: string; } /** * Creates the loader given the options. */ export declare const loader: (options: LoaderOptions) => string;