/// /** * * Link overlay provides a semantic way to wrap elements (cards, blog post, articles, etc.) in a link. * When you need to link an entire component or card, it can be tempting to wrap it within and think you're done. This is considered unsemantic and incorrect because the component or card could contain other clickable elements or links (tags, timestamps, buttons) * The LinkOverlay component aims to solve this by overlaying one link on top of the component or card, and then elevating the remaining links on top of it. * See docs here: https://chakra-ui.com/docs/navigation/link-overlay */ export declare function LinkBox({ ...props }: any): JSX.Element; export declare function LinkOverlay({ ...props }: any): JSX.Element; //# sourceMappingURL=LinkOverlay.d.ts.map