/**
 * For internal use only.
 *
 * Loads and validates the project's Stencil config.
 *
 * @returns The processed Stencil config metadata.
 */
export declare const loadConfigMeta: () => Promise<{
    baseURL: string;
    webServerUrl: string;
    stencilNamespace: string;
    stencilEntryPath: string;
}>;
