import { SandboxParameter } from './interfaces';
import { SandboxProcess } from './sandboxProcess';
export * from './interfaces';
export declare function startSandbox(parameter: SandboxParameter): SandboxProcess;
export declare function getUidAndGidInSandbox(rootfs: string, username: string): {
    uid: number;
    gid: number;
};
