type Source = "wotc" | "scryfall";
export default interface RawRulingResponse {
    object: "ruling";
    oracle_id: string;
    source: Source;
    published_at: string;
    comment: string;
}
export {};
