import { FunctionDeclaration } from "typescript"; /** * @description * It also validates that the provided command (function declaration) has export or default * modifier (i.e. it is named or default exported). */ export declare function getCommandExportValue(fn: FunctionDeclaration): "default" | "named";