/** * @jsxRuntime classic * @jsx jsx */ import { type JSX, type ReactNode } from 'react'; import { type BasePrimitiveProps } from '../components/types'; import type { Breakpoint, ComponentAs } from './types'; type ResponsiveShowProps = { as?: ComponentAs; children: ReactNode; } & ({ above?: never; /** * Apply CSS to show this specifically **below** this breakpoint. * The smallest breakpoint is not included as it would never be shown and this would not be performant. * * @important do not mix `above` and `below` (TypeScript should prevent this). */ below: Exclude; } | { /** * Apply CSS to show this specifically **above** this breakpoint. * The smallest breakpoint is not included as it would always be shown and this would not be performant. * * @important do not mix `above` and `below` (TypeScript should prevent this). */ above: Exclude; below?: never; }) & Pick; /** * Shows the content at a given breakpoint. By default, content is hidden. The primary use case is for visual presentation. * Mix `` with `` to achieve content that shifts at a breakpoint. * * Please note: * - This only uses `display: none` and `display: revert` to show/hide, it does not skip rendering of children trees. * - As this is rendered at all times, there is little performance savings here (just that this is not painted). */ export declare const Show: ({ above, below, children, as: AsElement, xcss, }: ResponsiveShowProps) => JSX.Element; export {};