UNPKG

rc-dialog

Version:
14 lines (13 loc) 452 B
import * as React from 'react'; import type { PanelProps, ContentRef } from './Panel'; export type ContentProps = { motionName: string; ariaId: string; onVisibleChanged: (visible: boolean) => void; } & PanelProps; declare const Content: React.ForwardRefExoticComponent<{ motionName: string; ariaId: string; onVisibleChanged: (visible: boolean) => void; } & PanelProps & React.RefAttributes<ContentRef>>; export default Content;