import { PQErrorCode } from "../entity/PQErrorCode.js"; import { IPQExpo, IPQExpoOptions } from "../interface/IPQExpo.js"; export declare class PQExpo implements IPQExpo { constructor(options: IPQExpoOptions); load(): void; show(): void; hide(): void; onClose(success: (isEnded: boolean) => void): void; onError(callback: (errMsg: string, errCode: PQErrorCode) => void): void; onLoad(success: (res: { state: string; status: string; }) => void): void; offLoad(): void; offClose(): void; offError(): void; destroy(): void; } //# sourceMappingURL=PQExpo.d.ts.map