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 {};
