import { StylerProps } from './styles'; import { ComponentFactory, StylerCreatorFn } from './types'; export interface ICreateComponentFactoryOptions { createStyle: StylerCreatorFn; } export default function createComponentFactory({ createStyle, }: ICreateComponentFactoryOptions): ComponentFactory;