@payfit/unity-components
Version:
27 lines (26 loc) • 891 B
TypeScript
import { VariantProps } from '@payfit/unity-themes';
import { LinkProps } from 'react-aria-components/Link';
export declare const paginationLink: import('tailwind-variants').TVReturnType<{
isActive: {
true: string;
false: string;
};
}, undefined, string[], {
isActive: {
true: string;
false: string;
};
}, undefined, import('tailwind-variants').TVReturnType<{
isActive: {
true: string;
false: string;
};
}, undefined, string[], unknown, unknown, undefined>>;
export interface PaginationLinkProps extends LinkProps, VariantProps<typeof paginationLink> {
value: number;
id?: string;
isDisabled?: boolean;
isActive?: boolean;
}
declare const RawPaginationLink: import('react').ForwardRefExoticComponent<PaginationLinkProps & import('react').RefAttributes<HTMLAnchorElement>>;
export { RawPaginationLink };