import { TRaffleDraw } from '../WSAPI/WSAPITypes'; import { ProtocolResponse } from '../Base/ProtocolResponse'; import { RaffleDraw } from './RaffleDraw'; export interface GetDrawRunResponse extends ProtocolResponse { draw: RaffleDraw; } /** @hidden */ export declare const drawRunTransform: (res: GetDrawRunResponse) => TRaffleDraw;