/**
 * @license Copyright (c) 2003-2022, RAONWIZ DevTeam. All rights reserved.
 */
import { SetupContext } from 'vue';
declare const isValidKey: (key: string) => boolean;
declare const bindHandlers: (uploadId: string, listeners: Record<string, any>) => void;
declare const setUpComponentEvents: (uploadId: string, ctx: SetupContext) => void;
declare const uuid: (prefix: string) => string;
declare const isNullOrUndefined: (value: any) => value is null | undefined;
export { bindHandlers, setUpComponentEvents, isValidKey, uuid, isNullOrUndefined };
