import { Ref } from "lit/directives/ref.js";
import { CSSResult, PropertyValues, TemplateResult } from "lit";
import { PapyrosElement } from "../PapyrosElement";
import "@material/web/textfield/outlined-text-field";
import "@material/web/button/outlined-button";
export declare class InteractiveInput extends PapyrosElement {
    value: string;
    inputRef: Ref<HTMLInputElement>;
    static get styles(): CSSResult;
    provideInput(): void;
    protected updated(_changedProperties: PropertyValues): void;
    protected render(): TemplateResult;
}
