export type GetAppNameAndVersionResponse = {
    appName: string;
    version: string;
};
export type LedgerMobileBridgeOptions = Record<string, never>;
export declare class LedgerStatusError extends Error {
    /**
     * The status code of the error.
     */
    readonly statusCode: number;
    /**
     * Creates a new LedgerStatusError.
     *
     * @param statusCode - The status code of the error.
     * @param message - The message of the error.
     */
    constructor(statusCode: number, message: string);
}
//# sourceMappingURL=type.d.cts.map