import { ServerOptions } from './types.js';
/**
 * Asynchronously generates a style string based on the given container and options.
 *
 * @param {VersaTiles} container - An instance of the VersaTiles container.
 * @param {Record<string, any>} serverOptions - An object containing options for style generation.
 * @returns {Promise<string>} A promise that resolves to a style string.
 */
export declare function generateStyle(metadata: string, serverOptions: ServerOptions): string;
