import type { FormieFormProps } from '../types/ComponentTypes.js';
/**
 * FormieForm
 * A Formie Form Component, which can be used to make form submissions to
 * Craft CMS's formie plugin in headless configuration.
 *
 * Usage:
 * ```svelte
 * <FormieForm handle="your-form-handle" publicCmsApi={PUBLIC_CMS_API} />
 * ```
 */
declare const Form: import("svelte").Component<FormieFormProps, {}, "isLoading">;
type Form = ReturnType<typeof Form>;
export default Form;
