/// // Types for @fn_library — resolved at build time via Vite alias to frontend/functions/ui/ declare module '@fn_library' { import type { FC } from 'react' import type { SelectProps as MantineSelectProps } from '@mantine/core' export const Card: FC export const CardContent: FC export const CardHeader: FC export const CardTitle: FC export const KPICard: FC export const Sparkline: FC export const Badge: FC export const Button: FC export const Input: FC export const Skeleton: FC export interface SelectProps extends MantineSelectProps {} export function Select(props: SelectProps): React.ReactElement }