import { ICustomizationOptions, ICustomizations, Style } from '../types'; import { AuthService } from '@saasbase-io/loginflow-websdk'; export declare function mapAlignment(alignment: string): string; export declare function mapBtnToCustomizedStyle(variant: "secondary" | "link" | "default" | "destructive" | "outline" | "ghost", customizations: ICustomizations): ICustomizationOptions | undefined; export declare function applyCustomizations(defaultClass: string, defaultStyle?: Style | CSSStyleDeclaration, typeCustomization?: ICustomizationOptions, elementId?: string, customizations?: ICustomizations, isRootContainer?: boolean): { class: string; style: Style; }; export declare const genRandSeed: () => string; export declare function showDestructiveToast(message: string): void; export declare function waitForAuthConfigured(Auth: AuthService, timeoutMs?: number): Promise;