import { Pitch } from './pitch'; export declare class Venue { type: string; id: number | null; attributes: { name: string; address1: string; address2: string; postcode: string; town: string; council: string; }; relationships: { pitches: { data: Array; }; }; }