@sajari/sdk-react
Version:
React SDK for the Sajari API
13 lines (12 loc) • 479 B
TypeScript
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;