import { VantComponent } from '../base';
export interface VantIndexAnchorProps {
    /**
     * 是否使用自定义内容的插槽
     *
     * @default false
     */
    useSlot?: boolean;
    /**
     * 索引字符
     */
    index?: string | number;
}
export type VantIndexAnchor = VantComponent<VantIndexAnchorProps>;
