UNPKG

444 BTypeScriptView Raw
1import React from 'react';
2import { TextStyle, StyleProp } from 'react-native';
3import { TextProps } from '../text/Text';
4export declare type DialogTitleProps = {
5 title?: string;
6 titleStyle?: StyleProp<TextStyle>;
7 titleProps?: TextProps;
8};
9declare const _default: React.FunctionComponent<Omit<DialogTitleProps, keyof import("../config").ThemeProps<T>>> | React.ForwardRefExoticComponent<DialogTitleProps>;
10export default _default;