UNPKG

@focuson/form_components

Version:

Components that can be used by @focuson/forms

8 lines (7 loc) 432 B
import { SimpleMessage } from "@focuson/utils"; import { LensProps } from "@focuson/state"; export interface MessagesProps<S, T, Context> extends LensProps<S, T, Context> { pageDisplayTime: string; nextPageDisplayTime: string | undefined; } export declare function Messages<S, T, Context>({ state, pageDisplayTime, nextPageDisplayTime }: MessagesProps<S, SimpleMessage[], Context>): import("react/jsx-runtime").JSX.Element;