/// export * as Notification from "./notification"; export * as Loader from "./spinner"; import * as Buttons from "./buttons"; import * as Alerts from "./alerts"; import * as Pills from "./pills"; import * as Badges from "./badges"; import * as Modal from "./modal"; import AppTitle from "./app-title"; import Card from "./card"; import Chevron from "./chevron"; import FileUpload from "./file-upload"; import PopupMenu from "./popup-menu"; import Preview from "./preview"; import ProgressBar from "./progress-bar"; import ThemeToggle from "./theme-toggle"; import Tooltip from "./tooltip"; declare const Button: ({ id, children, onClick, type, disabled, color, textColor, rounded, variant, isLoading, }: Buttons.Type.ButtonProps) => JSX.Element; declare const Pill: (props: Pills.Type.PillProps) => JSX.Element; declare const Alert: ({ children, Icon, dismissible, onClick, color, rounded, }: Alerts.Type.Props) => JSX.Element; declare const Badge: ({ children, color, rounded, }: Badges.Type.Props) => JSX.Element; export { Alert, Alerts, Badge, Badges, AppTitle, Button, Buttons, Card, Chevron, FileUpload, Modal, Pills, Pill, PopupMenu, Preview, ProgressBar, ThemeToggle, Tooltip, };