5 lines
234 B
TypeScript
5 lines
234 B
TypeScript
import type { TimeFieldLabelProps } from "../types.js";
|
|
declare const TimeFieldLabel: import("svelte").Component<TimeFieldLabelProps, {}, "ref">;
|
|
type TimeFieldLabel = ReturnType<typeof TimeFieldLabel>;
|
|
export default TimeFieldLabel;
|