import React from 'react';
export interface LoaderTypingProps {
    /**
     * The color of the loader
     * @default onPrimary
     * */
    color?: string;
    /**
     * The size of the loader
     * @default 100
     */
    size?: number;
    /**
     * The id of the loader
     */
    id: string;
    /**
     * The radius of the loader
     * @default 10
     */
    radius?: number;
}
export declare const LoaderTyping: React.FC<LoaderTypingProps>;
