amis-rpc-design/node_modules/rc-dialog/es/Dialog/Content/index.d.ts
2023-10-07 19:42:30 +08:00

14 lines
452 B
TypeScript

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;