You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
444 B
11 lines
444 B
import React from 'react';
|
|
import { TextStyle, StyleProp } from 'react-native';
|
|
import { TextProps } from '../text/Text';
|
|
export declare type DialogTitleProps = {
|
|
title?: string;
|
|
titleStyle?: StyleProp<TextStyle>;
|
|
titleProps?: TextProps;
|
|
};
|
|
declare const _default: React.FunctionComponent<Omit<DialogTitleProps, keyof import("../config").ThemeProps<T>>> | React.ForwardRefExoticComponent<DialogTitleProps>;
|
|
export default _default;
|