import { APL } from './APL/index.js';
interface HasAPL {
apl: APL;
}
interface SaleorAppParams {
apl: APL;
}
declare class SaleorApp implements HasAPL {
readonly apl: APL;
constructor(options: SaleorAppParams);
}
export { type HasAPL, SaleorApp, type SaleorAppParams };