import { SvelteComponent } from "svelte"; declare const __propDef: { props: { action: string; method?: 'POST' | 'PATCH' | 'PUT' | 'DELETE'; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type FormActionProps = typeof __propDef.props; export type FormActionEvents = typeof __propDef.events; export type FormActionSlots = typeof __propDef.slots; export default class FormAction extends SvelteComponent { } export {};