/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { IButtonProps as _IButtonProps, ICSSRule, ICSSPixelUnitRule, IPalette, IStyle } from '@msrvida/fluentui-react-cdn-typings/types'; export interface IButtonProps extends _IButtonProps { iconName?: string; onClick: { (event: React.MouseEvent<{}>): void; }; textAlign?: string; width?: ICSSRule | ICSSPixelUnitRule; themePalette: Partial; rootStyle?: IStyle; } export declare function Button(props: IButtonProps): JSX.Element;