/** * @license Copyright (c) 2003-2022, RAONWIZ DevTeam. All rights reserved. */ export type CopyProps = { [P in keyof T]: any; }; export interface IPropTypes { debug: boolean; id: string; mode: string; componentUrl: string; config: object; disabled: boolean; tagName: string; } export declare const uploadProps: CopyProps;