export function getHeadersPath({ build: { publish } }: {
    build: {
        publish: any;
    };
}): string;
export function addHeaders({ config: { headers: configHeaders, ...config }, headersPath, logs, featureFlags, }: {
    config: {
        [x: string]: any;
        headers: any;
    };
    headersPath: any;
    logs: any;
    featureFlags: any;
}): Promise<{
    headers: import("packages/headers-parser/lib/types.js").Header[];
}>;
