import { TextStyle, ViewStyle } from 'react-native'; import type { Vars } from '../styles'; export declare const indexBarDefaultVars: (vars: Vars) => { index_bar_sidebar_z_index: number; index_bar_sidebar_text_color: string; index_bar_index_font_size: number; index_bar_index_line_height: number; index_bar_index_active_color: string; index_anchor_z_index: number; index_anchor_padding_vertical: number; index_anchor_padding_horizontal: number; index_anchor_text_color: string; index_anchor_font_weight: "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined; index_anchor_font_size: number; index_anchor_line_height: number; index_anchor_background_color: string; index_anchor_sticky_text_color: string; index_anchor_sticky_background_color: string; }; interface Styles { wrapper: ViewStyle; sidebar: ViewStyle; index: TextStyle; indexActive: TextStyle; } export declare const createStyle: (theme: DiceUI.Theme) => Styles; interface AnchoreStyles { anchore: ViewStyle; anchoreText: TextStyle; sticky: ViewStyle; stickyText: TextStyle; } export declare const createAnchoreStyle: (theme: DiceUI.Theme) => AnchoreStyles; export {};