export declare class CreateInboundRuleRequest {
    Rule: string;
    constructor(Rule: string);
}
export interface InboundRule {
    Rule: string;
    ID: number;
}
export interface InboundRules {
    TotalCount: number;
    InboundRules: InboundRule[];
}
