import type { Ref } from 'vue'; import type { TableRowSelection, Key, GetRowKey, TableLocale, SelectionItem, TransformColumns, ExpandType, GetPopupContainer } from '../interface'; export declare const SELECTION_COLUMN: {}; export declare const SELECTION_ALL: "SELECT_ALL"; export declare const SELECTION_INVERT: "SELECT_INVERT"; export declare const SELECTION_NONE: "SELECT_NONE"; interface UseSelectionConfig { prefixCls: Ref; pageData: Ref; data: Ref; getRowKey: Ref>; getRecordByKey: (key: Key) => RecordType; expandType: Ref; childrenColumnName: Ref; locale: Ref; getPopupContainer?: Ref; } export declare type INTERNAL_SELECTION_ITEM = SelectionItem | typeof SELECTION_ALL | typeof SELECTION_INVERT | typeof SELECTION_NONE; export default function useSelection(rowSelectionRef: Ref | undefined>, configRef: UseSelectionConfig): [TransformColumns, Ref>]; export {};