import { SamlSigningOptions } from "./types"; export declare function assertRequired(value: T | null | undefined, error?: string): asserts value; export declare function assertBooleanIfPresent(value: T | null | undefined, error?: string): asserts value; export declare function signXmlResponse(samlMessage: string, options: SamlSigningOptions): string; export declare function signXmlMetadata(metadataXml: string, options: SamlSigningOptions): string;