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