import type { FunctionComponent } from 'react'; import type { StyleProp, TextStyle, ViewStyle } from 'react-native'; export interface Breadcrumb { title: string; onPress?: () => void; href?: string; } export interface BreadcrumbsProps { /** * Style for the container of a single breadcrumb & separator */ breadcrumbContainerStyle?: StyleProp; /** * Collection of breadcrumb items */ items: Breadcrumb[]; /** * Separator string (default is ">") */ separator?: string; /** * Style for the overarching component container */ style?: StyleProp; /** * Style for the separator text */ separatorStyle?: StyleProp; /** * Whether to show separator after final item (default false) */ showTrailingSeparator?: boolean; /** * Style for titles that have an onPress attached */ titleClickableStyle?: StyleProp; /** * Style for titles that do not have an onPress attached */ titleDisabledStyle?: StyleProp; /** * Style for all titles */ titleStyle?: StyleProp; } export declare const Breadcrumbs: FunctionComponent;