import React from "react"; export declare enum TextWithSeparatorOptions { POWERED_BY_KIWI = "poweredByKiwi" } declare type Props = { id: string; redirectUrl: string; url?: string; title: string; textWithSeparator?: TextWithSeparatorOptions; onClick?: (ev: React.SyntheticEvent) => void; }; export declare const Logo: ({ id, redirectUrl, title, url, textWithSeparator, onClick, }: Props) => React.ReactElement; export default Logo;