import React, { FC } from 'react'; import { ontology } from '../../../../../util'; import { BracketGameViewlike } from '../../../../../util/ontology'; import { Viusagelike } from '../../../../../util/viusage/primary'; export declare const BRACKET_ENTRY_CLASSNAMES: string[]; export declare const BRACKET_ENTRY_STYLE: React.CSSProperties; export declare type BracketEntryProps = { children?: React.ReactNode; style?: React.CSSProperties; overrideStyle?: boolean; classNames?: string[]; overrideClasses?: boolean; responsive?: boolean; up?: boolean; inheritance?: boolean; getBracketGameView?: () => (BracketGameViewlike | undefined); onWinnerSelect?: (id: string) => Promise; onTeamSelect?: (id: string, top: boolean) => Promise; teams?: ontology.Teamlike[]; viusage?: Viusagelike; noLeader?: boolean; reverse?: boolean; center?: boolean; builder?: boolean; }; export declare const BracketEntry: FC;