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