export type Category = {
    title: string;
    name: string;
};
export declare enum Modes {
    full = "full",
    inline = "inline"
}
export type SelectedItemProps = {
    selectedItemIndex?: number;
    focusedItemIndex?: number;
};
