import { ConfigPlugin } from '@expo/config-plugins';
type DittoConfig = {
    /**
     * The iOS Bluetooth prompt's description. Defaults to "Uses Bluetooth to
     * connect and sync with nearby devices."
     */
    bluetoothUsageDescription?: string;
    /**
     * The iOS LAN prompt's description. Defaults to "Uses WiFi to connect and
     * sync with nearby devices."
     */
    localNetworkUsageDescription?: string;
};
declare const _default: ConfigPlugin<DittoConfig>;
export default _default;
