UNPKG

shineout

Version:

Shein 前端组件库

14 lines (13 loc) 400 B
import { PureComponent } from 'react'; import Group from './Group'; import Once from './Once'; import { ButtonProps } from './Props'; declare class Button extends PureComponent<ButtonProps> { static displayName: string; static Group: typeof Group; static Once: typeof Once; static defaultProps: ButtonProps; getChildren(): any; render(): JSX.Element; } export default Button;