import { type IText } from '@visactor/vrender-core';
import type { CustomMethod } from '../type';
type HideConfig = {
    orient: string;
    method?: 'parity' | 'greedy' | CustomMethod;
    separation?: number;
    lastVisible?: boolean;
    firstVisible?: boolean;
};
export declare function autoHide(labels: IText[], config: HideConfig): void;
export {};
