/** Options to pass to {@link init}. */ export declare type InitOptions = { gameId: string; stripeAccount?: string; /** Path to the service worker JS. */ serviceWorker?: string; /** Additional tracking properties that will be sent along with the Entry event. */ trackProps?: Record; }; /** Initialize the Playpass SDK. */ export declare function init(opts?: InitOptions): Promise; export declare function requireInit(name: string): void; export declare function getStripeAccount(): string | undefined; /** Get the player's unique ID. */ export declare function getPlayerId(): string;