import * as React from 'react';

/**
 * Card — from @kibrisyazilim/design-system@0.1.0.
 */
export interface CardProps {
  elevation?: "flat" | "raised" | "floating";
  /** Padding applied to Card itself. Use `none` when composing with the parts. */
  padding?: "sm" | "md" | "lg" | "none";
  /** Adds hover feedback. Set when the whole card is a link or button. */
  interactive?: boolean;
  className?: string;
  id?: string;
  style?: CSSProperties;
  children?: React.ReactNode;
}

export declare const Card: React.ComponentType<CardProps>;
