export declare const validateId: ({ sourceId, trackingId, poiId, deliveryId }: { sourceId?: number | undefined; trackingId?: string | undefined; poiId?: number | undefined; cabinetId?: number | undefined; deliveryId?: string | undefined; }) => boolean; export declare const validateCbs: (cbs: object, types: string[]) => boolean; export declare const genId: () => number; export declare const throwError: ({ name, message }: { name: string; message: string; }) => never; export declare const cbNameError: (key: string) => void; export declare const cabinetCbError: (key: string) => void; export declare const isFunction: (fn: () => void) => boolean;