/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { LoaderSize as LoaderSizeSource, LoaderThemeColor as LoaderThemeColorSource, LoaderType as LoaderTypeSource } from '@progress/kendo-angular-indicators'; /** * Specifies the size of the PivotGrid loader. * * The available values are: * * `small` * * `medium` * * `large` */ export declare type LoaderSize = Partial; /** * Specifies the theme color of the PivotGrid loader. * * The available values are: * * `primary`—Applies coloring based on primary theme color. * * `secondary`—Applies coloring based on secondary theme color. * * `tertiary`—Applies coloring based on tertiary theme color. * * `info`—Applies coloring based on info theme color. * * `success`—Applies coloring based on success theme color. * * `warning`—Applies coloring based on warning theme color. * * `error`—Applies coloring based on error theme color. * * `dark`—Applies coloring based on dark theme color. * * `light`—Applies coloring based on light theme color. * * `inverse`—Applies coloring based on inverted theme color. */ export declare type LoaderThemeColor = Partial; /** * Specifies the type of the PivotGrid loader. * * The available values are: * * `pulsing` * * `infinite-spinner` * * `converging-spinner` */ export declare type LoaderType = Partial; /** * Specifies the type, size, and color of the PivotGrid loader. */ export interface LoaderSettings { /** * Specifies the size of the loader. */ size?: LoaderSize; /** * Specifies the theme color of the loader. */ themeColor?: LoaderThemeColor; /** * Specifies the type of the loader. * @default 'converging-spinner' */ type?: LoaderType; }