import { ReactElement } from 'react';
export interface SeperatorProps {
    className?: string;
}
export default function Seperator({ className, }: SeperatorProps): ReactElement;
