@zendeskgarden/react-modals
Version:
Components relating to modals in the Garden Design System
26 lines (25 loc) • 824 B
TypeScript
/**
* 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<ITooltipDialogProps & React.RefAttributes<HTMLDivElement>>;
/**
* @extends HTMLAttributes<HTMLDivElement>
*/
export declare const TooltipDialog: typeof TooltipDialogComponent & {
Body: typeof Body;
Close: typeof Close;
Footer: typeof Footer;
FooterItem: typeof FooterItem;
Title: typeof Title;
};
export {};