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