export default Input;
type Input = {
    $on?(type: string, callback: (e: any) => void): () => void;
    $set?(props: Partial<$$ComponentProps>): void;
};
declare const Input: import("svelte").Component<{
    value?: any;
} & Record<string, any>, {}, "value">;
type $$ComponentProps = {
    value?: any;
} & Record<string, any>;
