import { SkfElement } from '@internal/components/skf-element.js'; import { type CSSResultGroup } from 'lit'; /** * The `` can be used to group related subjects in a container * * @documentation See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/6229d63d9fe16020a60657e5) for design principles * * @slot - The card's main content * * @tagname skf-card */ export declare class SkfCard extends SkfElement { static styles: CSSResultGroup; /** If true, removes border */ noBorder: boolean; /** If true, removes padding */ noPadding: boolean; /** If true, the Card fills the parent element height */ stretch: boolean; render(): import("lit").TemplateResult<1>; }