alinea
Version:
Headless git-based CMS
13 lines (12 loc) • 544 B
TypeScript
import { type HTMLProps, type ReactNode, type Ref } from 'react';
export interface MainProps extends HTMLProps<HTMLDivElement> {
head?: ReactNode;
scrollRef?: Ref<HTMLDivElement>;
scrollable?: boolean;
isLoading?: boolean;
}
declare function MainContainer(props: HTMLProps<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
export declare const Main: import("react").ForwardRefExoticComponent<Omit<MainProps, "ref"> & import("react").RefAttributes<HTMLDivElement>> & {
Container: typeof MainContainer;
};
export {};