import { SDKOptions, SportTypes } from '../../types'; export interface IPlayoffDataArguments { stage_id?: string; translation_language?: string; } interface IGetPlayoff { params: IPlayoffDataArguments; sdkOptions: SDKOptions; sport: SportTypes; } export declare const getPlayoffs: ({ params, sdkOptions, sport }: IGetPlayoff) => Promise; export {};