import type { FormattedApiResponse } from "./types"; declare type FakeComboOptions = { commanderSpellbookId?: string; cards?: string[]; colorIdentity?: string; prerequisites?: string[]; steps?: string[]; results?: string[]; hasBannedCard?: boolean; hasSpoiledCard?: boolean; }; export default function makeFakeCombo(options?: FakeComboOptions): FormattedApiResponse; export {};