export interface CardContext { titleId: string; descriptionId: string; hasTitle: () => boolean; setHasTitle: (v: boolean) => void; hasDescription: () => boolean; setHasDescription: (v: boolean) => void; } export declare function getCardContext(): CardContext; export declare function setCardContext(ctx: CardContext): void; interface Props { children?: import('svelte').Snippet; class?: string; as?: 'article' | 'section' | 'div'; } declare const Card: import("svelte").Component; type Card = ReturnType; export default Card;