import { LitElement } from 'lit';
import { BpTypeElement } from '@blueprintui/components/internals';
/**
* ```typescript
* import '@blueprintui/components/include/card.js';
* ```
*
* ```html
*
* Card Content
*
* ```
*
* @summary The card component is used to group related content together in a visually organized way. The card should have a clear and consistent structure. The header should contain content that describes the content of the card.
* @element bp-card
* @since 1.0.0
* @slot - slot for card content
* @slot header - slot for card header
* @slot footer - slot for card footer
* @cssprop --background
* @cssprop --background
* @cssprop --color
* @cssprop --border-radius
* @cssprop --padding
* @cssprop --height
* @cssprop --width
*/
export declare class BpCard extends LitElement implements Pick {
static styles: CSSStyleSheet[];
_internals: ElementInternals;
render(): import("lit").TemplateResult<1>;
connectedCallback(): void;
}