import type { ReactNode } from 'react'; interface ShiftByProps { x?: number; y?: number; children: ReactNode; } export declare function ShiftBy({ x, y, children }: ShiftByProps): import("react/jsx-runtime").JSX.Element; export {};