materialuibasecomponent
Version:
Typescript Base Class for Material-UI Styled/Themed React Components
9 lines (8 loc) • 669 B
TypeScript
import * as React from 'react';
import { StyledComponentBase } from './StyledComponentBase';
import { StyledComponentBaseMixin } from '../models/StyledComponentBaseModels';
import { IWrappedStyledComponentProps, IWrappedStyledComponentState } from '../models/WrappedComponentBaseModels';
export declare class WrappedStyledComponentBase<T> extends StyledComponentBase<StyledComponentBaseMixin & IWrappedStyledComponentProps<T>, IWrappedStyledComponentState, any> implements React.ComponentSpec<any, any> {
constructor(props: StyledComponentBaseMixin & IWrappedStyledComponentProps<T>, context: IWrappedStyledComponentState);
render(): React.ReactNode;
}