import { SvelteComponent } from "svelte";
export declare const meta: {
    title: string;
    component: typeof GeneralInputText;
    tags: string[];
    args: {
        label: string;
        value: string;
    };
};
declare const __propDef: {
    props: Record<string, never>;
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type GeneralInputTextProps = typeof __propDef.props;
export type GeneralInputTextEvents = typeof __propDef.events;
export type GeneralInputTextSlots = typeof __propDef.slots;
export default class GeneralInputText extends SvelteComponent<GeneralInputTextProps, GeneralInputTextEvents, GeneralInputTextSlots> {
}
export {};
