import { IPayioJwtPayloadMachine } from '../interfaces/i-payload-machine';
export declare class PayioJwtPayloadMachineEntity implements IPayioJwtPayloadMachine {
    id: number;
    name: string | null;
    uid: string | null;
    settings?: Record<string, string>;
    constructor(data?: Partial<PayioJwtPayloadMachineEntity>);
}
