import * as React from 'react'; import { TextStyle, ViewStyle } from 'react-native'; export interface IMDPopupTitleBarProps { styles?: IMDPopupTitleBarStyle; title?: string | React.ReactNode; describe?: string; okText?: React.ReactNode; cancelText?: React.ReactNode; onConfirm?: () => void; onCancel?: () => void; } export interface IMDPopupTitleBarStyle { wrapper?: ViewStyle; titleWrapper?: ViewStyle; title?: TextStyle | ViewStyle; describe?: TextStyle | ViewStyle; left?: TextStyle; right?: TextStyle; leftWrapper?: TextStyle | ViewStyle; rightWrapper?: TextStyle | ViewStyle; } export declare const MDPopupTitleBarStyles: IMDPopupTitleBarStyle; export default class MDPopupTitleBar extends React.Component { static defaultProps: { styles: IMDPopupTitleBarStyle; }; render(): JSX.Element; private renderTitle; private renderCancelButton; private renderOkButton; private renderButton; }