You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
584 B

import React from 'react';
export interface PropsType {
key?: string;
className?: string;
role?: string;
active: boolean;
fixX?: boolean;
fixY?: boolean;
}
export declare class TabPane extends React.PureComponent<PropsType, {}> {
static defaultProps: {
fixX: boolean;
fixY: boolean;
};
layout: HTMLDivElement;
offsetX: number;
offsetY: number;
componentWillReceiveProps(nextProps: PropsType & {
children?: React.ReactNode;
}): void;
setLayout: (div: HTMLDivElement) => void;
render(): JSX.Element;
}