import type { Ref } from "../../lib/svelte.svelte.js"; import { type Config, type FieldErrors, type FormState, type SchemaValue } from "../../form/index.js"; import "../../form/extra-labels/clear.js"; declare const clear: (ctx: FormState, config: Config, valueRef: Ref, errors: FieldErrors) => ReturnType; declare module "../components.js" { interface ButtonTypes { "clear-action": {}; } } export { clear }; interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions): import('svelte').SvelteComponent & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } declare const Clear: $$__sveltets_2_IsomorphicComponent, { [evt: string]: CustomEvent; }, {}, {}, string>; type Clear = InstanceType; export default Clear;