import { SqError } from './types';
/**
 * The hosting client browser is not supported by the Web Payments SDK
 */
declare class BrowserNotSupportedError extends SqError {
    constructor();
}
/**
 * The Web Payments SDK requires HTTPS and a secure context
 */
declare class WebSdkEmbedError extends SqError {
    constructor();
}
export { BrowserNotSupportedError, WebSdkEmbedError };
