import type { StyleProp, ViewStyle } from 'react-native'; import type { SizeProp } from '../../tokens/size'; import type { ColorProp, SxProps } from '../../types/shared'; export interface PaginationProps { count: number; page: number; onPageChange: (page: number) => void; siblingCount?: number; boundaryCount?: number; showFirstButton?: boolean; showLastButton?: boolean; disabled?: boolean; size?: SizeProp; testID?: string; color?: ColorProp; sx?: SxProps; style?: StyleProp; } //# sourceMappingURL=types.d.ts.map