import { RegistryType } from '../types/Registry.js';
export interface Arguments {
    appDir: string;
    operation: string;
    type: RegistryType;
    id: string;
    version?: string;
    log?: boolean;
}
export declare function adminArguments(): Arguments;
export declare function adminInit(): Promise<void>;
