| 67 | Omit<AddStyletronRef<React.ComponentProps<D>>, keyof BaseProps<P>>; |
| 68 | |
| 69 | export interface StyletronComponent<D extends React.ElementType, P extends {}> { |
| 70 | <C extends React.ElementType = D>( |
| 71 | props: { |
| 72 | $as?: C; |
| 73 | } & OverrideProps<C, P>, |
| 74 | ): JSX.Element; |
| 75 | __STYLETRON__: any; |
| 76 | displayName?: string; |
| 77 | } |
| 78 | |
| 79 | export type StyledFn = { |
| 80 | <T extends React.ElementType, Props extends {}>( |
nothing calls this directly
no outgoing calls
no test coverage detected