/// <reference types="node" />
import { ZGCommand, ZGCommandCode } from '../command';
export interface PermitJoinPayload {
    targetShortAddress?: number;
    interval?: number;
    TCsignificance?: number;
}
export declare class ZGPermitJoinCommand implements ZGCommand {
    code: ZGCommandCode;
    label: string;
    payload: PermitJoinPayload;
    defaultPayload: PermitJoinPayload;
    constructor(code: ZGCommandCode, payload: PermitJoinPayload | undefined);
    getCode(): ZGCommandCode;
    getLabel(): string;
    getBufferedPayload(): Buffer;
}
//# sourceMappingURL=permit-join.d.ts.map