import { Message } from '../../../constants'; /** * Returns a map of applicable rule-types for a topic * action combination */ export declare const getRulesForMessage: (message: Message) => { section: string; type: string; action: import("@deepstream/protobuf/dist/types/messages").ALL_ACTIONS; } | null; /** * Returns true if a given rule supports references to incoming data */ export declare const supportsData: (type: string) => boolean; /** * Returns true if a given rule supports references to existing data */ export declare const supportsOldData: (type: string) => boolean;