export declare const Pagination: { baseStyle?: { container: { display: string; justifyContent: string; }; stepper: { h: string; border: string; borderRadius: string; cursor: string; alignSelf: string; color: string; bg: string; _activeLink: { bg: string; color: string; _hover: { bg: string; }; _disabled: { bg: string; color: string; }; }; _active: { bg: string; }; _hover: { bg: string; }; _focusVisible: { boxShadow: string; }; _disabled: { cursor: string; color: string; _hover: { bg: string; }; }; }; button: { h: string; border: string; borderRadius: string; cursor: string; alignSelf: string; color: string; bg: string; _activeLink: { bg: string; color: string; _hover: { bg: string; }; _disabled: { bg: string; color: string; }; }; _active: { bg: string; }; _hover: { bg: string; }; _focusVisible: { boxShadow: string; }; _disabled: { cursor: string; color: string; _hover: { bg: string; }; }; }; } | undefined; sizes?: { md: ({ theme }: import("@chakra-ui/styled-system").StyleFunctionProps) => { container: { textStyle: string; }; stepper: { px: string; py: string; minH: string; minW: string; fontSize: string; pl: number; pr: number; _first: { mr: string; }; _last: { ml: string; }; }; separator: { textStyle: string; minW: string; }; button: any; text: { textStyle: string; p: string; }; }; } | undefined; variants?: { full: { separator: { display: string; justifyContent: string; alignItems: string; _disabled: { color: string; }; }; }; minimal: { text: { alignSelf: string; color: string; _disabled: { color: string; }; }; }; } | undefined; defaultProps?: { size?: "md" | undefined; variant?: "full" | "minimal" | undefined; colorScheme?: string | undefined; } | undefined; parts: ("container" | "button" | "text" | "separator" | "stepper")[]; };