import * as React from 'react';
import { SchemaDataSet } from '../form_store';
declare type LayerProps = {
    schema: SchemaDataSet;
    name?: string;
    sourcePath: string;
    isDragging?: boolean;
    parentSchema: SchemaDataSet;
    owner?: any;
    index: number;
};
export declare const BuildLayerItem: React.FC<LayerProps>;
export {};
