5 lines
349 B
TypeScript
5 lines
349 B
TypeScript
import React from 'react';
|
|
import type { AnyZodObject } from 'zod';
|
|
import type { StillProps } from './Composition.js';
|
|
export declare const Still: <Schema extends AnyZodObject, Props extends Record<string, unknown>>(props: StillProps<Schema, Props>) => React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
|