import { SvelteTypedComponent , SvelteAllProps } from 'svelte-typed-component'; /** * Cards contain content and actions about a single subject * * Props:hover, elevation, hoverElevation, classes * * Example: * * * *
* *
*
* kitty *
*
* The three little kittens, they lost their mittens,
* And they began to cry,
* "Oh, mother dear, we sadly fear,
* That we have lost our mittens." *
*
*
* * *
*
*
*/ export default class Card extends SvelteTypedComponent { } declare const _CardProps: { /** Enable hover elevation. * * Default: true */ hover?: boolean; /** Default elevation value. * * Default: 1 */ elevation?: number; /** Hover elevation value. * * Default: 8 */ hoverElevation?: number; /** String of root element classes. * * Default: "rounded inline-flex flex-col overflow-hidden duration-200 ease-in" */ classes?: string|((s:string)=>string); } & SvelteAllProps; declare const _CardEvents: {}; declare const _CardSlots: { title: {}; media: {}; default: {}; text: {}; actions: {}; }; export declare type CardProps = typeof _CardProps; export declare type CardEvents = typeof _CardEvents; export declare type CardSlots = typeof _CardSlots; export {};