/**
 * Created by nghinv on Thu Jul 15 2021
 * Copyright (c) 2021 nghinv@lumi.biz
 */
import React from 'react';
interface AnimatedLineProps {
    width?: number;
    height?: number;
    edgeBorderWidth?: number;
    lineThick?: number;
    lineSize?: number | string;
    lineBorderRadius?: number;
    lineColor?: string;
    lineAnimationDuration?: number;
    lineDirection?: 'vertical' | 'horizontal';
}
declare function AnimatedLine(props: AnimatedLineProps): JSX.Element;
declare const _default: React.MemoExoticComponent<typeof AnimatedLine>;
export default _default;
