import { EditorCardHeaderProps } from '../shared/EditorCard/EditorCard'; export type TextFieldProProps = { value?: string; placeholder?: string; onChange?: (value: string) => void; } & EditorCardHeaderProps; declare const TextFieldPro: (props: TextFieldProProps) => import("react").JSX.Element; export default TextFieldPro; //# sourceMappingURL=index.d.ts.map