declare type Falsy = null | undefined | false | 0 | ''; declare type Atom = string | Falsy; declare type StyleRecord = Record; declare type StyleElement = Atom | Atom[] | StyleRecord; export declare const style: (...atoms: StyleElement[]) => string; export {};