import React from 'react';
declare type Props = {
    width?: string;
    visible?: boolean;
    strokeWidth?: string;
    strokeColor?: string;
    animationDuration?: string;
    ariaLabel?: string;
};
export default function RotatingLines({ strokeColor, strokeWidth, animationDuration, width, visible, ariaLabel, }: Props): React.ReactElement | null;
export {};
