type RematchData = { id: string; startDate?: Date | null; players: { id: any; name?: string; userId: string; ready: boolean; }[]; }; type Props = { rematch: RematchData; }; export declare const RematchDisplay: ({ rematch }: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export {};