import { FC } from 'react';
interface LoadProps {
    width?: number;
    radius?: number;
    height?: number;
    margin?: string;
}
declare const Load: FC<LoadProps>;
export default Load;
