import { BoxProps, CompoundStylesApiProps, PolymorphicFactory } from '../../../core'; export type CardSectionStylesNames = 'section'; export interface CardSectionProps extends BoxProps, CompoundStylesApiProps { /** Adds border to the root element */ withBorder?: boolean; /** If set, the section inherits padding from the parent `Card` */ inheritPadding?: boolean; } export type CardSectionFactory = PolymorphicFactory<{ props: CardSectionProps; defaultRef: HTMLDivElement; defaultComponent: 'div'; stylesNames: CardSectionStylesNames; compound: true; }>; export declare const CardSection: ((props: import("../../..").PolymorphicComponentProps) => React.ReactElement) & Omit & { ref?: any; renderRoot?: (props: any) => any; }) | (CardSectionProps & { component: React.ElementType; renderRoot?: (props: Record) => any; })>, never> & import("../../..").ThemeExtend<{ props: CardSectionProps; defaultRef: HTMLDivElement; defaultComponent: "div"; stylesNames: CardSectionStylesNames; compound: true; }> & import("../../..").ComponentClasses<{ props: CardSectionProps; defaultRef: HTMLDivElement; defaultComponent: "div"; stylesNames: CardSectionStylesNames; compound: true; }> & import("../../..").PolymorphicComponentWithProps<{ props: CardSectionProps; defaultRef: HTMLDivElement; defaultComponent: "div"; stylesNames: CardSectionStylesNames; compound: true; }> & Record;