import { TextStyle, ViewStyle } from 'react-native'; import type { Vars } from '../styles'; export declare const searchDefaultVars: (vars: Vars) => { search_padding_vertical: number; search_padding_horizontal: number; search_background_color: string; search_content_background_color: string; search_input_height: number; search_label_padding_vertical: number; search_label_padding_horizontal: number; search_label_color: string; search_label_font_size: number; search_left_icon_color: string; search_action_padding_vertical: number; search_action_padding_horizontal: number; search_action_text_color: string; search_action_font_size: number; }; interface Styles { container: ViewStyle; content: ViewStyle; round: ViewStyle; field: ViewStyle; label: TextStyle; action: ViewStyle; actionText: TextStyle; showAction: ViewStyle; } export declare const createStyle: (theme: DiceUI.Theme) => Styles; export {};