import * as React from "react"; export declare const Button: ({ children, onClick, style, ...rest }: { children: React.ReactNode; onClick: React.MouseEventHandler; style?: React.CSSProperties; "aria-label"?: string; }) => import("react/jsx-runtime").JSX.Element; export declare const Link: ({ children, href, style, }: { href: string; children: React.ReactNode; style?: React.CSSProperties; }) => import("react/jsx-runtime").JSX.Element; export declare const Code: ({ children }: { children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element; export declare const Modal: ({ children, close, isOpen, label, maxWidth, }: { children: React.ReactNode; close: () => void; isOpen: boolean; label?: string; maxWidth?: string; }) => import("react/jsx-runtime").JSX.Element;