import { Grid } from "../../grid";
import { ComponentChildren } from "preact";
import { JSXInternal } from "preact/src/jsx";
interface Props {
    value: string;
    children?: ComponentChildren;
    style?: JSXInternal.CSSProperties;
    grid: Grid;
}
declare const _default: (props: Omit<Props, "grid">) => JSXInternal.Element;
export default _default;
