import { SemanticSizes, LoaderColors } from '../../utils/constants'; export declare class NvLoader { /****************************************************************************/ /** * Choose the size of the loader to best fit your application’s needs, whether * it’s a small spinner for subtle loading indicators or a large one for more * prominent displays. */ readonly size: `${SemanticSizes}`; /** * Choose the color of the loader. Options are primary and white to keep the * design consistent and ensure the loader stands out or blends in * appropriately with your application’s interface. */ readonly color: `${LoaderColors}`; /****************************************************************************/ render(): any; }