import type { CustomClassPropType, KoliBriPaginationButtonCallbacks, LabelPropType, MaxPropType, PaginationHasButton, PaginationProps, Stringified, TooltipAlignPropType } from '../../schema';
import type { JSX } from '../../stencil-public-runtime';
export declare class KolPagination implements PaginationProps {
    render(): JSX.Element;
    _boundaryCount?: number;
    _customClass?: CustomClassPropType;
    _label?: LabelPropType;
    _hasButtons?: boolean | Stringified<PaginationHasButton>;
    _page: number;
    _pageSize: number;
    _pageSizeOptions: Stringified<number[]>;
    _on: KoliBriPaginationButtonCallbacks;
    _siblingCount?: number;
    _tooltipAlign?: TooltipAlignPropType;
    _max: MaxPropType;
}
