export type VerticalAlign = 'top' | 'middle' | 'bottom'; export declare const styles: (isLoading: boolean, verticalAlign: VerticalAlign) => { '&:last-child': { border: string; }; '&:hover': { bg?: undefined; '.visible-on-hover'?: undefined; a?: undefined; } | { bg: string; '.visible-on-hover': { opacity: number; }; a: { textDecoration: string; }; }; td: { verticalAlign: VerticalAlign; '&.visible-on-hover': { opacity: number; }; }; };