import { type PartialWithUndefined } from '@augment-vir/core';
export declare function killContainer(containerNameOrId: string, options?: PartialWithUndefined<{
    /**
     * If set to `true`, the container will be killed but won't be removed. (You'll still see it
     * in your Docker Dashboard but it'll have a status of exited.)
     *
     * @default false
     */
    keepContainer: boolean;
}>): Promise<void>;
