/** * Flowtype definitions for style * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 * @flow */ import type { StyledProps } from "styled-components"; export interface StyleProps { /** * CSS properties. */ sx?: StyledProps; } /** * Gets style. */ declare export function getStyle(x: StyleProps): { [key: string]: string | number, ... };