import * as React from 'react'; import { BackgroundColorProps, SpaceProps } from 'styled-system'; import { Merge } from 'type-fest'; declare type CardCommonProps = { theme?: any; /** Sets more padding */ large?: boolean; /** Disables default padding */ noSpacing?: boolean; } & BackgroundColorProps & SpaceProps & { css?: any; as?: any; }; export declare type CardSectionProps = CardCommonProps; export declare const CardSection: import("@emotion/styled-base").StyledComponent, HTMLDivElement>, CardCommonProps, any>; export declare type CardFooterProps = CardCommonProps; export declare const CardFooter: import("@emotion/styled-base").StyledComponent & React.HTMLAttributes & { theme?: any; /** Sets more padding */ large?: boolean; /** Disables default padding */ noSpacing?: boolean; } & BackgroundColorProps & SpaceProps & { css?: any; as?: any; } & { theme?: any; } & React.Attributes, CardCommonProps, any>; export declare type CardHeaderProps = Merge, CardCommonProps & { /** Sets CardHeader title */ title?: string; /** Sets top-right actions on CardHeader */ actions?: React.ReactNode; children?: React.ReactNode; }>; export declare const CardHeader: React.FunctionComponent; export declare type CardProps = BackgroundColorProps & Partial<{ theme: any; /** Sets elevation of Card on the Z axis */ top: boolean; /** Sets more padding */ large: boolean; /** Disables default padding */ noSpacing: boolean; }>; export declare const Card: import("@emotion/styled-base").StyledComponent, HTMLDivElement>, CardProps, any>; export {};