import { type ImageSourcePropType, type StyleProp, type TextStyle } from 'react-native'; import type { SFSymbol } from 'sf-symbols-typescript'; export interface StackToolbarLabelProps { /** * The text to display as the label for the tab. */ children?: string; } export declare const StackToolbarLabel: React.FC; export type StackToolbarIconProps = { src: ImageSourcePropType; /** * Controls how the image icon is rendered on iOS. * * - `'template'`: iOS applies tint color to the icon * - `'original'`: Preserves original icon colors * * Defaults based on parent component's `tintColor`: * - With `tintColor`: defaults to `'template'` * - Without `tintColor`: defaults to `'original'` * * @platform ios */ renderingMode?: 'template' | 'original'; } | { sf: SFSymbol; } | { /** * Name of an image in your Xcode asset catalog (`.xcassets`). * * @platform ios */ xcasset: string; /** * Controls how the xcasset icon is rendered on iOS. * * - `'template'`: iOS applies tint color to the icon * - `'original'`: Preserves original icon colors * * Defaults based on parent component's `tintColor`: * - With `tintColor`: defaults to `'template'` * - Without `tintColor`: defaults to `'original'` * * @platform ios */ renderingMode?: 'template' | 'original'; }; export declare const StackToolbarIcon: React.FC; export interface StackToolbarBadgeProps { /** * The text to display as the badge */ children?: string; style?: StyleProp>; } export declare const StackToolbarBadge: React.FC; //# sourceMappingURL=toolbar-primitives.d.ts.map