import * as React from 'react' import type {BoxProps} from './Box' import type {MediaQueryProp} from './Layout' /** * A component that makes its items layer on top of each other: * ___ * | ☐ | * ‾‾‾ */ export declare const Layer: React.ForwardRefExoticComponent< LayerProps & React.RefAttributes > export declare const LayerItem: React.ForwardRefExoticComponent< LayerItemProps & React.RefAttributes > export interface LayerProps extends BoxProps {} declare type Placements = | 'top' | 'right' | 'bottom' | 'left' | 'center' | 'topLeft' | 'topRight' | 'bottomRight' | 'bottomLeft' export interface LayerItemProps extends BoxProps { position?: undefined offset?: MediaQueryProp placement: MediaQueryProp z?: MediaQueryProp } export {}