import type { Auction } from './Auction';
export type Auctions = {
    data: Array<Auction>;
    total: number;
};
