/**
 * Settings Subitem.
 *
 * @description An element that contains a key identifier and a human-readable label
 * in the `Settings` submenus.
 * @see [[SettingsItem.subitems]]
 * @interface SettingsSubItem
 * @export
 */
export default interface SettingsSubItem {
    key: string;
    label: string;
}
