import { SvelteComponent } from 'svelte' declare const __propDef: { props: { /** * 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 ` } slots: { /** * Any Tweakpane component, except another ``. */ default: {} } exports?: {} | undefined bindings?: string | undefined } export type InternalPaneInlineProps = typeof __propDef.props export type InternalPaneInlineEvents = typeof __propDef.events export type InternalPaneInlineSlots = typeof __propDef.slots /** * This component is for internal use only. * * @sourceLink * [InternalPaneInline.svelte](https://github.com/kitschpatrol/svelte-tweakpane-ui/blob/main/src/lib/internal/InternalPaneInline.svelte) */ export default class InternalPaneInline extends SvelteComponent< InternalPaneInlineProps, InternalPaneInlineEvents, InternalPaneInlineSlots > {} export {}