import { ReactElement } from 'react'; import { Wallet } from '@fridaygame/client'; export type MatchCreatorTheme = 'dark' | 'light'; export interface MatchCreatorProps { creator: Wallet; theme?: MatchCreatorTheme; } export declare function MatchCreator({ creator, theme }: MatchCreatorProps): ReactElement;