import { FField } from "./field"; import { FWithPlaceholderType } from "./types"; export declare class FWithPlaceholder extends FField implements FWithPlaceholderType { _placeholder?: string | (() => string); constructor(config: FWithPlaceholderType); get placeholder(): string | undefined; }