import * as React from 'react'; declare type ImageButtonProps = { onClick?: (...args: any[]) => any; onBtnClick?: (...args: any[]) => any; editor?: any; options?: any; tip?: React.ReactNode; }; declare class ImageButton extends React.Component { static defaultProps: { tip: string; }; onClick: (event: any) => any; isDisabled: () => any; render(): JSX.Element; } export default ImageButton;