import type { NetlifyFunctionsPluginOptions } from '../../shared/index.js';
export interface NetlifyServe {
    host: string;
    close: () => void;
}
export declare function netlifyServe({ directory, }: NetlifyFunctionsPluginOptions): Promise<NetlifyServe>;
