interface StateForm { state: "error" | "loading" | "send" | "default"; message?: string; } export type { StateForm };