import * as React from 'react';
import './index.scss';
export interface OadpAttributeTextProps {
    name?: string;
    label?: string;
    required?: boolean;
    placeholder?: string;
    defaultValue?: string;
    disabled?: boolean;
}
declare const OadpAttributeText: React.FC<OadpAttributeTextProps>;
export default OadpAttributeText;
