import { CommandLineOptions } from '../../Command/commandDefinition'; export declare const ENTRY_FILE_PATH_OPTION: { readonly name: "entry-file-path"; readonly type: StringConstructor; readonly description: "Path to the applet entry file. Relative to the command or absolute."; }; export declare const APPLET_PATH_OPTION: { readonly name: "applet-path"; readonly type: StringConstructor; readonly description: "Path to the applet file or the project folder depending on the entry file. Relative to the command or absolute."; }; export declare function getAppletDirectoryAbsolutePath(currentDirectory: string, options: CommandLineOptions<[typeof APPLET_PATH_OPTION]>): Promise; export declare function getAppletBinaryFileAbsolutePath(currentDirectory: string, options: CommandLineOptions<[typeof APPLET_PATH_OPTION]>): Promise; export declare function getAppletEntryFileAbsolutePath(currentDirectory: string, options: CommandLineOptions<[typeof ENTRY_FILE_PATH_OPTION]>): Promise; export declare function getAppletEntryFileRelativePath(entryFileAbsolutePath: string, appletDirectoryAbsolutePath: string): string;