import { SipRuleTriggerType } from '@aws-sdk/client-chime-sdk-voice';
export interface CreateSIPRuleProps {
    name?: string;
    triggerType?: SipRuleTriggerType;
    triggerValue?: string;
    targetApplications?: [
        {
            region: string;
            priority: string;
            sipMediaApplicationId: string;
        }
    ];
}
export declare const CreateSIPRule: (uid: string, props: CreateSIPRuleProps) => Promise<{
    sipRuleId: string | undefined;
}>;
export declare const DeleteSIPRule: (uid: string) => Promise<void>;
