/**
 * Creates a setting for global shortcuts
 * @param config The configuration for the settings
 * @returns The setting
 */
export declare function createGlobalShortcutSetting({ name, init, options, allowCustom, }: {
    /** The name of the setting */
    name: string;
    /** The initial value */
    init: string;
    /** The predefined options */
    options?: string[];
    /** Whether to allow custom inputs, defaults to true */
    allowCustom?: boolean;
}): import("@launchmenu/core").IFieldMenuItem<string, import("@launchmenu/core").IJSON>;
//# sourceMappingURL=createGlobalShortcutSetting.d.ts.map