import { BoxProps, CompoundStylesApiProps, PolymorphicFactory } from '../../../core'; export type AppShellSectionStylesNames = 'section'; export interface AppShellSectionProps extends BoxProps, CompoundStylesApiProps { /** If set, the section expands to take all available space */ grow?: boolean; } export type AppShellSectionFactory = PolymorphicFactory<{ props: AppShellSectionProps; defaultRef: HTMLDivElement; defaultComponent: 'div'; stylesNames: AppShellSectionStylesNames; compound: true; }>; export declare const AppShellSection: ((props: import("../../..").PolymorphicComponentProps) => React.ReactElement) & Omit & { ref?: any; renderRoot?: (props: any) => any; }) | (AppShellSectionProps & { component: React.ElementType; renderRoot?: (props: Record) => any; })>, never> & import("../../..").ThemeExtend<{ props: AppShellSectionProps; defaultRef: HTMLDivElement; defaultComponent: "div"; stylesNames: AppShellSectionStylesNames; compound: true; }> & import("../../..").ComponentClasses<{ props: AppShellSectionProps; defaultRef: HTMLDivElement; defaultComponent: "div"; stylesNames: AppShellSectionStylesNames; compound: true; }> & import("../../..").PolymorphicComponentWithProps<{ props: AppShellSectionProps; defaultRef: HTMLDivElement; defaultComponent: "div"; stylesNames: AppShellSectionStylesNames; compound: true; }> & Record;