import React, { CSSProperties } from 'react'; export type Props = { className?: string; style?: CSSProperties; bannedWords?: string[]; value?: string; placeholder?: string; error?: Record; onChange?: (v: string) => void; }; export declare const CreatePostTitle: ({ className, style, bannedWords, value, placeholder, error, onChange, }: Props) => React.JSX.Element;