import { StreamingConfiguration } from '@aws-sdk/client-chime-sdk-messaging';
export declare enum AppInstanceDataType {
    CHANNEL = "Channel",
    CHANNELMESSAGE = "ChannelMessage"
}
interface StreamingConfigsProps {
    dataType: AppInstanceDataType;
    resourceArn: string;
}
interface DataRetentionProps {
    streamingConfigs?: StreamingConfigsProps[];
    appInstanceArn?: string;
}
export declare const PutStreamingConfiguration: (props: DataRetentionProps) => Promise<{
    appInstanceStreamingConfiguration: StreamingConfiguration[] | undefined;
}>;
export {};
