declare module '@times-components/storybook' { export const showcaseConverter: (module: any, showcase: any) => any; } declare module '@times-components/icons' { import { FC } from 'react'; export const IconForwardChevron: FC<{ fillColour: string; height: number; width: number; }>; } declare module '@times-components/ts-styleguide' { type ColourMap = Record; type Colours = Record; type Breakpoints = { small: string; medium: string; wide: string; huge: string; }; type Fonts = { body: string; headline: string; headlineRegular: string; supporting: string; }; export const fonts: Fonts; export const spacing: (multiple: number) => number; export const breakpoints: Breakpoints; export const colours: Colours; }