/** * Copyright Zendesk, Inc. * * Use of this source code is governed under the Apache License, Version 2.0 * found at http://www.apache.org/licenses/LICENSE-2.0. */ import React from 'react'; import { ITooltipDialogProps } from '../../types'; import { Title } from './Title'; import { Body } from './Body'; import { Close } from './Close'; import { Footer } from './Footer'; import { FooterItem } from './FooterItem'; declare const TooltipDialogComponent: React.ForwardRefExoticComponent>; /** * @extends HTMLAttributes */ export declare const TooltipDialog: typeof TooltipDialogComponent & { Body: typeof Body; Close: typeof Close; Footer: typeof Footer; FooterItem: typeof FooterItem; Title: typeof Title; }; export {};