import { ExecutionState } from '../utils/command';
interface PackConfig {
    tacoRootPath: string;
    destPath: string;
    extraFiles: string[];
    force: boolean;
    nameOnly: boolean;
    tacoName?: string;
}
export declare function packTaco(config: PackConfig, state: ExecutionState): Promise<void>;
export {};
