import { FlextesaOptions } from "./types";
export declare const POD_NAME = "flextesa-sandbox";
export declare const startFlextesa: (_options: Partial<FlextesaOptions>, readyCallback?: (() => void) | undefined) => Promise<void>;
export declare const stopFlextesa: (callback?: (() => void) | undefined) => void;
export declare const isFlextesaRunning: () => Promise<boolean>;
