/************ Processor: ts ************/ import * as dependency_0 from 'react'; // FILE: beyond-icon-button.d.tsx declare namespace ns_beyondiconbutton { import SyntheticEvent = dependency_0.SyntheticEvent; import ButtonHTMLAttributes = dependency_0.ButtonHTMLAttributes; import SVGAttributes = dependency_0.SVGAttributes; import ForwardRefExoticComponent = dependency_0.ForwardRefExoticComponent; import RefAttributes = dependency_0.RefAttributes; import PropsWithChildren = dependency_0.PropsWithChildren; interface props { icon?: string; onClick?: (e: SyntheticEvent) => void; viewBox?: SVGAttributes["viewBox"]; disabled?: ButtonHTMLAttributes["disabled"]; name?: ButtonHTMLAttributes["name"]; value?: ButtonHTMLAttributes["value"]; id?: string; title?: string; tippy?: string | object; navigate?: string; className?: ButtonHTMLAttributes["className"]; type?: ButtonHTMLAttributes["type"]; "data-tippy-content"?: string; } const BeyondIconButton: ForwardRefExoticComponent & RefAttributes>; } // FILE: icon.d.tsx declare namespace ns_icon { import SVGAttributes = dependency_0.SVGAttributes; interface props { title?: string; icon?: string; className?: SVGAttributes["className"]; viewBox?: SVGAttributes["viewBox"]; "data-tippy-content"?: string; "data-item"?: string; } const BeyondIcon: (props: props) => JSX.Element; } // FILE: icons.d.ts declare namespace ns_icons { const BEYOND_ICONS: any; } export import BeyondIconButton = ns_beyondiconbutton.BeyondIconButton; export import BeyondIcon = ns_icon.BeyondIcon; export import BEYOND_ICONS = ns_icons.BEYOND_ICONS; export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };