import { HttpServer } from '../types';
interface SendData {
    status: number;
    type: string;
    body: unknown;
    serviceStart: Date;
    lastModified?: Date;
    source?: string;
    errorLog?: boolean;
    redirect?: boolean;
}
declare const sendData: (server: HttpServer, data: SendData) => void;
export { sendData, SendData };
