declare const parseLogoutResponse: (rawResponse: string) => Promise<{
    id: string;
    issuer: string;
    status: string;
    destination: string;
    inResponseTo: string;
}>;
declare const createLogoutRequest: ({ nameId, providerName, sloUrl, }: {
    nameId: string;
    providerName: string;
    sloUrl: string;
}) => {
    id: string;
    xml: string;
};
export { parseLogoutResponse, createLogoutRequest };
