import React from 'react'; import { BoxDivProps } from '../silke-box'; import './silke-loader.scss'; interface SilkeLoaderProps extends BoxDivProps { message?: string; randomGenerator?: () => string; style?: React.CSSProperties; /** * Stops the loader animation on the vev logo */ stop?: boolean; } export declare function SilkeLoader({ message, randomGenerator, size, stop, style, ...rest }: SilkeLoaderProps): import("react/jsx-runtime").JSX.Element; export declare function LoaderSVG({ stop, style }: { stop?: boolean; style?: React.CSSProperties; }): import("react/jsx-runtime").JSX.Element; export {};