import type { IScopedContext } from 'jamis-core';
import type { FormProps } from './types';
export declare const useFormDialog: ({ store, render }: Pick<FormProps, "store" | "render">, scoped: IScopedContext, handleBulkChange: (values: Record<string, any>, submit: boolean) => void) => {
    renderDialog: () => JSX.Element;
    openFeedback: (dialog: any, ctx: any) => Promise<unknown>;
};
