import React, { ReactNode } from "react"; import { StyledRowProps } from "./StyledRow"; interface RowProps extends StyledRowProps { children: ReactNode; gap?: number; } export declare const Row: ({ children, gap, ...props }: RowProps) => React.JSX.Element; export {};