import React from 'react';
type Props = {
    className?: string;
    inverse?: boolean;
};
declare const LogoWithText: ({ className, inverse }: Props) => React.JSX.Element;
export default LogoWithText;
