@fluster.io/dev
Version:
12 lines (11 loc) • 457 B
TypeScript
import { default as React, HTMLProps } from 'react';
declare const hintBooleanProp: readonly ["alias", "note", "seeAlso", "hint", "developer"];
type HintBooleanProp = (typeof hintBooleanProp)[number];
interface HintProps extends HTMLProps<HTMLDivElement>, Partial<Record<HintBooleanProp, boolean>> {
label?: string;
}
export declare const Hint: {
({ children, label, ...props }: HintProps): React.JSX.Element;
displayName: string;
};
export {};