type RelatedCardComponent = "token" | "meld_part" | "meld_result" | "combo_piece";
export default interface RelatedComponentResponse {
    object: "related_card";
    id: string;
    component: RelatedCardComponent;
    name: string;
    type_line: string;
    uri: string;
}
export {};
