/** * @one-payments/web-components - Universal web UI built with Lit * @module @one-payments/web-components */ export { OnePayment } from './one-payment.js'; export { OnePayment as OnePaymentElement } from './one-payment.js'; export type { SDKConfig, PaymentSucceededPayload, PaymentFailedPayload, StateChangedPayload, State, } from '@one-payments/core'; /** * Define the custom element. * * Note: With Lit, the custom element is automatically registered when the module is imported. * This function is provided for compatibility with frameworks that expect a defineCustomElements pattern. * * @example * ```typescript * import { defineCustomElements } from '@one-payments/web-components'; * * // Optional - element is already registered on import * defineCustomElements(); * ``` */ export declare function defineCustomElements(): void; //# sourceMappingURL=index.d.ts.map