import "./Button.local.css"; export interface IButton { id?: string; icon?: string; text?: string; eventClick?: any; href?: string; target?: string; title?: string; styleDisplay?: string; class?: string; isVisible?: any; subClass?: string; } declare function Button({ id, icon, text, eventClick, href, target, title, styleDisplay, class: className, subClass }: IButton): any; declare namespace Button { var className: string; } export default Button; //# sourceMappingURL=Button.d.ts.map