import React from "react"; import { StyleProp, ViewStyle } from "react-native"; import { PaletteColor } from "./base"; export interface BackdropSubheaderProps { title?: string | React.ReactElement; leading?: React.ReactElement | ((props: { color: string; size: number; }) => React.ReactElement | null) | null; trailing?: React.ReactElement | ((props: { color: string; size: number; }) => React.ReactElement | null) | null; divider?: boolean | React.ReactElement; color?: PaletteColor; style?: StyleProp; contentContainerStyle?: StyleProp; titleContainerStyle?: StyleProp; leadingContainerStyle?: StyleProp; trailingContainerStyle?: StyleProp; } declare const BackdropSubheader: React.FC; export default BackdropSubheader;