import { EDocType } from '../../../general';
export interface IPayioJwtPayloadInfo {
    companyId: string;
    docType: EDocType | null;
    doc: string | null;
    companyName: string;
    natipayPix: boolean;
    containerId: string | null;
    containerName: string | null;
    sandbox: boolean;
}
