import { type Writable } from 'svelte/store'; import type { FieldState } from './types,'; export declare const SVELTE_FUI_FIELD_CONTEXT_KEY = "svelte-fui-field-context-key"; export type FieldContext = { state$: Writable; icon$: Writable; }; export declare function getFieldContext(): FieldContext; export declare function setFieldContext(values: { state: FieldState; icon: any | undefined; }): FieldContext;