import { ComponentPropsWithoutRef, FC } from 'react'; import { IconColor } from 'bloko/blocks/icon'; export declare enum LoadingScale { Small = "Small", Medium = "Medium" } interface LoadingProps extends ComponentPropsWithoutRef<'svg'> { initial?: IconColor; scale?: LoadingScale; } declare const Loading: FC; export default Loading; export { IconColor as LoadingColor };