import { InsetProps } from './types/Inset.props.ts'; import { FC } from 'react'; /** * Negative-margin utility that pulls content to the edge of its parent's * padding on a given `side` (all|x|y|top|right|bottom|left). The `space` * token matches the parent's padding so inset content bleeds flush to the * container border. The `clip` prop controls border-box vs padding-box * clipping. */ declare const Inset: FC; export default Inset;