import type { InternalFieldState, InternalFormState, FieldState } from "./types"; /** * Converts internal field state to published field state */ declare function publishFieldState>(formState: InternalFormState, field: InternalFieldState): FieldState; export default publishFieldState;