import { PolicyEngine } from '../policy'; import { CredentialStore } from '../credentials/credential-store'; export interface WindowsPipeServerOptions { pipeName?: string; policyEngine?: PolicyEngine; credentialStore?: CredentialStore; } export declare class WindowsPipeServer { private server; private readonly pipePath; private readonly policyEngine; private readonly credentialStore; constructor(options?: WindowsPipeServerOptions); getPipePath(): string; start(): Promise; private handleConnection; private processMessage; private sendResponse; private sendErrorResponse; stop(): Promise; }