import React from 'react'; import { ViewStyle } from 'react-native'; export interface TableTitleProps { active?: boolean; direction?: 'asc' | 'dsc'; onPress?: () => void; hideSortIcon?: boolean; children: React.ReactNode; style?: ViewStyle; } export declare const TableTitleDefaultProps: Partial; /** * # 🏓 TableTitle * * Data tables allow displaying sets of data. * */ export declare const TableTitle: React.ComponentType;