import * as React from 'react';
import './index.scss';
export interface OadpAttributeProps {
    id?: string;
    name?: string;
    code?: string;
    logicalName?: string;
    physicalName?: string;
    attributeType?: string;
    referEntity?: any;
    referAttribute?: any;
    defaultValue?: string;
    description?: string;
    required?: boolean;
    disabled?: boolean;
}
declare const OadpAttribute: React.FC<OadpAttributeProps>;
export default OadpAttribute;
