/// import { IDict } from '../common'; export interface ISchemaProps { source?: string | File; schema: IDict | File; onSave: any; oldIndex?: number; newIndex?: number; onSchemaChange?: (schema: any, error: any) => void; disablePreview: boolean; disableSave?: boolean; } export declare function Schema(props: ISchemaProps): JSX.Element;