import { CSSProperties, FC } from "react";
export interface HorizontalLinesProps {
    borderStyle: CSSProperties["borderStyle"];
    spacing: number;
    numLines: number;
    offset?: number;
}
declare const HorizontalLines: FC<HorizontalLinesProps>;
export default HorizontalLines;
