import { type ComponentReturnType } from '../component';
type EnvironmentParams = {
    url: string;
};
export declare function renderInBrowser(componentRenderFn: (rootNode: HTMLElement) => ComponentReturnType): Promise<string>;
export declare function render(componentRenderFn: (rootNode: HTMLElement) => ComponentReturnType, params: EnvironmentParams): Promise<string>;
export {};
