import { __name } from "../../_virtual/_rolldown/runtime.js"; //#region server/addCommand/index.d.ts type OxCommandArguments = Record; interface OxCommandParams { name: string; help?: string; type?: 'number' | 'playerId' | 'string' | 'longString'; optional?: boolean; } interface OxCommandProperties { name?: string; help?: string; params?: OxCommandParams[]; restricted?: boolean | string | string[]; } declare function addCommand(commandName: string | string[], cb: (source: number, args: T, raw: string) => Promise, properties?: OxCommandProperties): void; //#endregion export { addCommand }; //# sourceMappingURL=index.d.ts.map