import { default as React } from 'react'; import { Box } from '../box'; type Align = 'top' | 'bottom' | 'left' | 'right' | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; export type SlotProps = React.ComponentPropsWithoutRef & { align?: Align; }; /** An element that has absolute position, used to place content on the edge of the card */ export declare const Slot: React.ForwardRefExoticComponent>; export {};