import { SvelteComponent } from 'svelte' declare const __propDef: { props: Omit< { /** * Text in the pane's title bar. * * If `position="inline"`, the default is `undefined` and no title bar is * shown. * * @default `Tweakpane` */ title?: string | undefined /** * Allow users to interactively expand / contract the pane by clicking its * title bar. * * Hides the collapse button from the title bar when `false`. * * @default `true` */ userExpandable?: boolean /** * Expand or collapse the pane into its title bar. * * @default `true` * @bindable */ expanded?: boolean /** * Custom color scheme. * * Applies to all child components, but note that setting a different `theme` * on a child component's prop will **not** override the parent pane's theme. * * Note that `` * components with `storePositionLocally` set to true are used on the same * page. * * @default `'1'` */ localStoreId?: string } events: { [evt: string]: CustomEvent } slots: { /** * Any Tweakpane component, except another ``. */ default: {} } exports?: {} | undefined bindings?: string | undefined } export type InternalPaneDraggableProps = typeof __propDef.props export type InternalPaneDraggableEvents = typeof __propDef.events export type InternalPaneDraggableSlots = typeof __propDef.slots /** * This component is for internal use only. * * @sourceLink * [InternalPaneDraggable.svelte](https://github.com/kitschpatrol/svelte-tweakpane-ui/blob/main/src/lib/internal/InternalPaneDraggable.svelte) */ export default class InternalPaneDraggable extends SvelteComponent< InternalPaneDraggableProps, InternalPaneDraggableEvents, InternalPaneDraggableSlots > {} export {}