import type { TableColumn } from '../base'; type TableColumnWithPlaceholder = Pick; type TableColumnWithPlaceholderConstructor = abstract new (...args: any[]) => TableColumnWithPlaceholder; export declare function mixinColumnWithPlaceholderAPI(base: TBase): (abstract new (...args: any[]) => { placeholder?: string; /** @internal */ placeholderChanged(): void; }) & TBase; export {};