import { Relationship, RelationshipConstructorOptions, Entity, Reference, UniqueUrl, Resource } from '../index.js'; export interface RespondsWithConstructorOptions extends RelationshipConstructorOptions { url?: Reference; resource?: Reference; redirects?: URL[] | string[]; method?: string; headers?: Record; } export declare class RespondsWith extends Relationship { readonly _collection = "responds_with"; method: string; headers: Record; redirects: string[]; constructor(data?: RespondsWithConstructorOptions); } //# sourceMappingURL=responds-with.d.ts.map