import { LitElement } from 'lit'; import { SmartRepliesStyle } from './SmartRepliesStyle'; export declare class SmartReplies extends LitElement { /** * This properties will come from Parent. */ smartReplyStyle: SmartRepliesStyle; replies: string[]; closeIconURL: string; buttonStyles: any; static styles: import("lit").CSSResult[]; closeReplyPreview: () => void; onReplyClick(reply: string): void; closeIconStyle(): { height: string; width: string; border: string; borderRadius: string; background: string; buttonIconTint: string | undefined; }; wrapperStyle(): { height: string | undefined; width: string | undefined; border: string | undefined; borderRadius: string | undefined; background: string | undefined; }; render(): import("lit-html").TemplateResult<1>; } declare global { namespace JSX { interface IntrinsicElements { "smart-replies": any; } } interface TagNameMap { 'smart-replies': SmartReplies; } } //# sourceMappingURL=smart-replies.d.ts.map