import React from 'react';
type Props = {
    subtitle?: string;
};
export default function Branding({ subtitle }: Props): React.JSX.Element;
export {};
