import './style.less';
import './icon/style.less';
import { Button as InternalButton } from './button';
import { IconButton } from './icon/iconButton';
export type { ButtonProps } from './button';
export type { IconButtonProps } from './icon/iconButton';
type CombinedButtonType = typeof InternalButton & {
    Icon: typeof IconButton;
};
declare const Button: CombinedButtonType;
export { Button };
//# sourceMappingURL=index.d.ts.map