export interface Resource {
    attributes?: Resource.Attributes;
    href?: string;
    id: string;
    relationships?: Resource.Relationships;
    type: string;
    meta?: Resource.Meta;
}
declare namespace Resource {
    interface Attributes {
    }
    interface Relationships {
    }
    interface Meta {
    }
}
export {};
//# sourceMappingURL=resource.d.ts.map