import * as React from 'react';
interface BlobProps {
    height?: string;
    width?: string;
    background?: string;
    funcss?: string;
    shape?: string;
}
declare const Blob: React.FC<BlobProps>;
export default Blob;
