;
export declare const createSecureHeaders: (options?: Options) => {
key: string;
value: string;
}[];
declare type NextPageContext = {
res?: ServerResponse;
};
declare type NextAppContext = {
ctx?: NextPageContext;
};
declare type NextComponent = React.ComponentType
& {
getInitialProps?(context: NextPageContext & NextAppContext): IP | Promise;
};
export declare const withSecureHeaders: (options?: Options) => (ChildComponent: NextComponent) => React.FunctionComponent & {
getInitialProps?(context: NextPageContext & NextAppContext): {} | Promise<{}>;
};
export {};