import React from 'react'; import { StyleProp, ViewStyle, TextStyle } from 'react-native'; export declare type HeaderContentProps = { /** The content to render for the title */ title: React.ReactNode; /** The content to render for the subtitle */ subtitle?: React.ReactNode; /** The content to render for the info */ info?: React.ReactNode; /** Specifies the number of avatars and icons that are included in the action list */ actions?: { components: { count: number; width: number; }; icons: { count: number; }; }; /** Style overrides for internal elements. The styles you provide will be combined with the default styles. */ styles?: { root?: StyleProp; title?: StyleProp; subtitle?: StyleProp; info?: StyleProp; search?: StyleProp; }; /** * Theme value overrides specific to this component. */ theme: ReactNativePaper.Theme; /** * @experimental * * Set to true to use the alternative subtitle styling (larger size, light weight) */ washingtonStyle?: boolean; }; /** * HeaderContent component * * The HeaderContent is a helper component for organizing the contents in the Header. It is * a wrapper that organizes the title, subtitle, info, and search inputs appropriately. */ export declare const HeaderContent: React.FC;