export interface FlowResult {
    samlContent: string;
    extract: any;
    sigAlg?: string | null;
}
export declare function flow(options: any): Promise<FlowResult>;
