/// import { CSSProperties } from 'styled-components'; type Props = { to: string; logoSrc: string; fallbackText: string; isCenteredLogo: boolean; style?: CSSProperties; }; declare function BrandLogo({ to, logoSrc, fallbackText, isCenteredLogo, style }: Props): JSX.Element; export default BrandLogo;