import type Stylesheet from './stylesheet'; export type PropertiesMap = Record; export type SelectorCustomizer = (selector: string) => string; interface Creator { create(): T; } export type StylesheetCreator = Creator; export {};