import { DeleteRuleResponse } from "../../../interfaces/models/Rule"; export interface DeleteRuleProps { spaceId: string; ruleId: string; } declare function useDeleteRule(): (props: DeleteRuleProps) => Promise; export default useDeleteRule;