widely
Version:
13 lines (12 loc) • 466 B
TypeScript
import * as React from 'react';
import type { IDialogChildProps } from '..';
import "../../style/index.less";
export declare type ContentProps = {
[propName: string]: any;
} & IDialogChildProps;
export declare type ContentRef = {
focus: () => void;
changeActive: (next: boolean) => void;
};
declare const Content: React.ForwardRefExoticComponent<Pick<ContentProps, string | number> & React.RefAttributes<ContentRef>>;
export default Content;