import type { CustomRule } from './CustomRule'; /** * @type CustomRulesEnvelope: * * @property data: * */ export type CustomRulesEnvelope = { data: Array; } & { [key: string]: any; };