import { FtInputInterface } from "@fluid-topics/ft-wc-utils";
export declare enum FtdsTextInputType {
    text = "text",
    password = "password",
    email = "email",
    url = "url",
    number = "number",
    date = "date",
    time = "time",
    datetimeLocal = "datetime-local",
    search = "search"
}
export interface FtdsTextInputProperties extends FtInputInterface<string> {
    type: FtdsTextInputType;
    clearable: boolean;
}
