import { type ReactElement } from "react"; import { type BaseInputProps } from "../commons/input"; export interface MarkdownInputProps extends Omit, "onChange" | "id"> { id?: string; onChange: (value: string) => void; } export declare const markdownInputRootStyles: (props?: import("class-variance-authority/dist/types").ClassProp | undefined) => string; export declare const markdownInputContentStyles: (props?: ({ error?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const MarkdownInput: ({ id, label, error, errorText, info, placeholder, value, onChange, className, }: MarkdownInputProps) => ReactElement; //# sourceMappingURL=index.d.ts.map