import { CSSValue, ResponsiveStyle } from "./types"; export type LayoutProps = Partial<{ width: CSSValue<"width", true>; height: CSSValue<"height", true>; display: CSSValue<"display">; overflow: CSSValue<"overflow">; position: CSSValue<"position">; zIndex: CSSValue<"zIndex", true>; }>; export declare const layout: (props: LayoutProps) => ResponsiveStyle;