import '@shoelace-style/shoelace/dist/components/tooltip/tooltip'; import '@shoelace-style/shoelace/dist/components/icon/icon'; export type TooltipPlacements = 'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end'; export type PhotonTooltipProps = { tip: string; placement?: TooltipPlacements; maxWidth?: string; }; export declare const PhotonTooltip: (p: PhotonTooltipProps) => import("solid-js").JSX.Element; export default PhotonTooltip;