import * as React from 'react';
import { FormComponentProps, FormComponent } from '@tomino/dynamic-form';
import { SemanticICONS } from 'semantic-ui-react/dist/commonjs/generic';
export declare type ButtonProps = {
    target: string;
    icon: SemanticICONS;
    color: string;
    content: string;
    onClick: any;
};
export declare const ButtonComponent: React.FC<FormComponentProps<ButtonProps>>;
export declare const ButtonView: FormComponent;
