import { Component, JSX } from "solid-js"; import "./base.css"; import "./bar.css"; export declare type BarProps = JSX.HTMLAttributes & { mount?: HTMLElement; placement?: "top" | "right" | "bottom" | "left"; position?: Omit; portal?: boolean; }; export declare const Bar: Component;