import type { RequestMethod } from '../types/index.js'; import type { SanctumForm } from '../types/SanctumForm.js'; /** * Creates a form instance that supports reactive input handling, validation, and file uploads. */ export declare const useSanctumForm: >(method: RequestMethod | (() => RequestMethod), url: string | (() => string), inputs: Data) => Data & SanctumForm;