import { Interpolation, Theme } from '@emotion/react'; import { HTMLAttributes } from 'react'; export type PlayerTimerProps = { playerId: PlayerId; customStyle?: ((playing: boolean, timeLeft: number) => Interpolation)[]; } & HTMLAttributes; export declare const PlayerTimer: (props: PlayerTimerProps) => import("@emotion/react/jsx-runtime").JSX.Element | null; export type PlayerTimerDisplayProps = PlayerTimerProps & { playerTime: number; }; export declare const PlayerTimerDisplay: ({ playerTime, playerId, customStyle, ...props }: PlayerTimerDisplayProps) => import("@emotion/react/jsx-runtime").JSX.Element; export declare const blinkOnRunningTimeout: (playing: boolean, timeLeft: number) => false | import("@emotion/utils").SerializedStyles;