import { FC } from '@dineug/r-html';
import { ValuesType } from '../../../internal-types';
export declare const Lnb: {
    readonly preferences: "Preferences";
    readonly shortcuts: "Shortcuts";
};
export type Lnb = ValuesType<typeof Lnb>;
export type SettingsLnbProps = {
    value: Lnb;
    onChange: (value: Lnb) => void;
};
declare const SettingsLnb: FC<SettingsLnbProps>;
export default SettingsLnb;
