import { Venue } from './venue'; export declare class Pitch { type: string; id: number | null; attributes: { name: string; images: { small: Array; medium: Array; large: Array; }; sport: string; surface: string; format: string; }; relationships: { venues: { data: Venue; }; }; links: { weblink: string; }; }