import { WebAPICallResult } from '../WebClient';
export type AdminConversationsGetConversationPrefsResponse = WebAPICallResult & {
    error?: string;
    needed?: string;
    ok?: boolean;
    prefs?: Prefs;
    provided?: string;
};
export interface Prefs {
    can_thread?: CanThread;
    who_can_post?: CanThread;
}
export interface CanThread {
    type?: string[];
    user?: string[];
}
//# sourceMappingURL=AdminConversationsGetConversationPrefsResponse.d.ts.map