UNPKG

@sajari/sdk-react

Version:
13 lines (12 loc) 479 B
import { CSSObject } from "@emotion/core"; import { CreateStyled, StyledComponent } from "@emotion/styled"; import * as React from "react"; import { Theme } from "./theme"; export { StyledComponent }; declare const _default: CreateStyled<Theme>; export default _default; export interface StyledProps<T> extends React.HTMLAttributes<T>, React.ClassAttributes<T> { styles?: CSSObject | null; theme?: Theme; } export declare const override: (props: any) => any;