import React from 'react';
declare type FallingLinesProps = {
    color?: string;
    width?: string;
    height?: string;
    visible?: boolean;
};
declare const FallingLines: ({ color, width, visible, }: FallingLinesProps) => React.ReactElement | null;
export default FallingLines;
