import * as React from "react"; import { StyleRules } from "./internal/types"; declare type Tag = string | ((props: { [s: string]: any; }) => string); declare type Props = { children?: React.ReactNode; }; export declare const styled: (tag: Tag, css: StyleRules) => ({ children, ...props }: Props) => JSX.Element; export {};