/** * Programmatic Onairos Flow * * This function executes the complete Onairos authentication and onboarding flow * that can be attached to custom buttons or called programmatically. */ import { OnairosButtonProps } from '../types'; /** * Execute the complete Onairos flow programmatically * This is the same logic that the OnairosButton uses internally * * @param options Configuration options for the flow * @returns Promise that resolves when flow is complete */ export declare const executeOnairosFlow: (options: OnairosButtonProps) => Promise; /** * Simple wrapper function that matches the OnairosButton click behavior * * @param options Configuration options for the flow * @returns Promise that resolves when flow is complete */ export declare const startOnairosFlow: (options: OnairosButtonProps) => Promise; //# sourceMappingURL=programmaticFlow.d.ts.map