export interface StyleFunction { (props: Props): | Properties | string | Array> } export type StyleArray = Array< Properties | string | StyleFunction > export type StaticStyleArray = Array export type StyleArgument = | Properties | string | StyleFunction | StyleArray export type StaticStyleArgument = | Properties | string | StaticStyleArray