UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

11 lines (10 loc) 454 B
import { HTMLProps, ReactNode, Ref } from 'react'; export interface MainProps extends HTMLProps<HTMLDivElement> { head?: ReactNode; scrollRef?: Ref<HTMLDivElement>; scrollable?: boolean; isLoading?: boolean; } export declare const Main: import("react").ForwardRefExoticComponent<Omit<MainProps, "ref"> & import("react").RefAttributes<HTMLDivElement>> & { Container: import("./util/PropsWithAs.js").ComponentWithAs<unknown, "div">; };