import { PaginationModel } from '../../../../../ui/index.js';
import { PageItem, PageNames } from '../types.js';
export declare function useSection<T = PageItem>({ ref, refSection }: {
    ref?: PageNames;
    refSection?: string;
}): {
    debug: any;
    item: T[];
    page: T;
    pagination: PaginationModel;
    section: any;
};
