import { CSSProperties, ReactElement } from 'react';

export type RollLocationCenterProps = {
	renderList: {
		activeKey: string;
		render: ReactElement;
	}[];
	activeKey?: string;
	behavior?: ScrollBehavior;
	direction?: "horizontal" | "vertical";
	style?: CSSProperties;
	className?: string;
};
export declare const RollLocationCenter: (props: RollLocationCenterProps) => import("react").JSX.Element;

export {};
