import { type Accessor } from 'solid-js'; export type ElementWidthHandle = { width: Accessor; ref: (el: HTMLElement) => void; }; export declare function createElementWidth(): ElementWidthHandle;