import React from 'react';
type IconFieldProps = {
    label: string;
    disabled?: boolean;
};
declare const IconField: ({ label, disabled }: IconFieldProps) => React.JSX.Element;
export default IconField;
