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