import { Callable } from "./Callable"; import { Fetch } from "./Fetch"; import { IConstructible } from "./IConstructible"; import { IStatic as Hdrs } from "./IHeaders"; import { IStatic as Rqst } from "./IRequest"; import { IStatic as Rspns } from "./IResponse"; export declare function check(fetch: Callable | undefined, Headers: IConstructible | undefined, Request: IConstructible | undefined, Response: IConstructible | undefined): [Fetch, Hdrs, Rqst, Rspns]; export default check;