export declare class CreatePartnerDto {
    companyId: string;
    companyLabel: string;
    displayLabel?: string;
    targetUrl: string;
    isActive?: boolean;
    sortOrder?: number;
}
export declare class UpdatePartnerDto {
    companyId?: string;
    companyLabel?: string;
    displayLabel?: string;
    targetUrl?: string;
    isActive?: boolean;
    sortOrder?: number;
}
export declare class DispatchChoiceDto {
    companyId: string;
    partnerId?: string;
}
export declare class DispatchRequestDto {
    checkpointCode: string;
    qrToken: string;
    choice?: DispatchChoiceDto;
}
export declare class ValidateTicketRequestDto {
    ticket: string;
    targetCheckpointCode: string;
}
