///
import { RecursivePartial } from '../typings';
import { IButton } from '../components/core/blocks/basic/Button';
export declare type ButtonProps = RecursivePartial & RecursivePartial & {
children?: JSX.Element | JSX.Element[] | string;
};
export declare function Button(props: ButtonProps): JSX.Element;