UNPKG

@1771technologies/lytenyte-pro

Version:

7 lines (6 loc) 303 B
import { PropsWithChildren, ReactNode } from 'react'; export interface GridContainerProps { readonly top?: ReactNode; readonly bottom?: ReactNode; } export declare function GridContainer({ top, bottom, children }: PropsWithChildren<GridContainerProps>): import("react/jsx-runtime").JSX.Element;