import './ripple.js'; declare const name = "s-card"; declare const props: { type: "filled" | "elevated" | "outlined"; clickable: boolean; }; declare const Card_base: { new (): { type: "filled" | "elevated" | "outlined"; clickable: boolean; } & {} & { addEventListener(type: K, listener: (this: { type: "filled" | "elevated" | "outlined"; clickable: boolean; } & {} & /*elided*/ any & HTMLElement, ev: {}[K]) => any, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: { type: "filled" | "elevated" | "outlined"; clickable: boolean; } & {} & /*elided*/ any & HTMLElement, ev: {}[K]) => any, options?: boolean | EventListenerOptions): void; } & HTMLElement; readonly define: (name: string) => void; prototype: HTMLElement; }; export declare class Card extends Card_base { } declare global { interface HTMLElementTagNameMap { [name]: Card; } namespace React { namespace JSX { interface IntrinsicElements { [name]: React.DetailedHTMLProps, HTMLElement> & Partial; } } } } declare module 'vue' { import { HTMLAttributes } from 'vue'; interface GlobalComponents { [name]: new () => { /** * @deprecated **/ $props: HTMLAttributes & Partial; } & Card; } } declare module 'vue/jsx-runtime' { namespace JSX { interface IntrinsicElements { [name]: IntrinsicElements['div'] & Partial; } } } declare module 'solid-js' { namespace JSX { interface IntrinsicElements { [name]: JSX.HTMLAttributes & Partial; } } } declare module 'preact' { namespace JSX { interface IntrinsicElements { [name]: JSXInternal.HTMLAttributes & Partial; } } } export {};