declare namespace _default { export { background }; export { border }; export { borderColor }; export { borderRadius }; export { borderWidth }; export { boxShadow }; export { flex }; export { flexFlow }; export { font }; export { fontFamily }; export { fontVariant }; export { fontWeight }; export { margin }; export { padding }; export { placeContent }; export { shadowOffset }; export { textShadow }; export { textShadowOffset }; export { textDecoration }; export { textDecorationLine }; export { transform }; } export default _default; declare function background(tokenStream: any): { backgroundColor: any; }; import border from './border'; declare const borderColor: (tokenStream: any) => { [x: string]: any; }; declare const borderRadius: (tokenStream: any) => { [x: string]: any; }; declare const borderWidth: (tokenStream: any) => { [x: string]: any; }; import boxShadow from './boxShadow'; import flex from './flex'; import flexFlow from './flexFlow'; import font from './font'; import fontFamily from './fontFamily'; declare function fontVariant(tokenStream: any): { fontVariant: any[]; }; declare function fontWeight(tokenStream: any): { fontWeight: any; }; declare const margin: (tokenStream: any) => { [x: string]: any; }; declare const padding: (tokenStream: any) => { [x: string]: any; }; import placeContent from './placeContent'; declare function shadowOffset(tokenStream: any): { shadowOffset: { width: any; height: any; }; }; import textShadow from './textShadow'; declare function textShadowOffset(tokenStream: any): { textShadowOffset: { width: any; height: any; }; }; import textDecoration from './textDecoration'; import textDecorationLine from './textDecorationLine'; import transform from './transform';