import { FC, Dispatch, SetStateAction, ReactNode } from 'react'; export declare const Section: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>; /** * Provides a container that horizontally centers its contents */ export declare const CenteredSection: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>; /** * Provides a container that removes the left and right padding * provided by `Content`, using a negative margin */ export declare const EdgeToEdgeSection: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>; interface ScrollSectionProps { readonly children?: ReactNode; readonly className?: string; readonly maxHeight?: string; readonly scrollRef: Dispatch>; } export declare const ScrollSection: FC; export declare const DialogMainSection: import("styled-components").StyledComponent, import("styled-components").DefaultTheme, { readonly hasHeader: boolean; readonly scrollRef: Dispatch>; }, never>; export {};