import { LoadAxoOptions } from "./types";
/**
 * Loads accelerated checkout components.
 * @param options object with a minified parameter to determine if the script that is loaded should be minified or not (defaults to true if)
 * @returns an object with metadata with a localeUrl parameter to be read by AXO SDK
 */
declare function loadAxo(options: LoadAxoOptions): Promise<{
    metadata: {
        localeUrl: string;
    };
}>;
export default loadAxo;
