/** * UI constants for style guideline * @see [GOV.UK Design System](https://design-system.service.gov.uk/styles/) * */ /** * UI constants for design attributes * * @see [GOV.UK Design System - Colour Palette](https://design-system.service.gov.uk/styles/colour/#colour-palette) */ export declare const colors: { red: string; yellow: string; green: string; blue: string; 'dark-blue': string; 'light-blue': string; purple: string; black: string; 'dark-grey': string; 'mid-grey': string; 'light-grey': string; white: string; 'light-purple': string; 'bright-purple': string; pink: string; 'light-pink': string; orange: string; brown: string; 'light-green': string; turquoise: string; }; /** * An object that represents the available sizes. */ export declare const sizes: { readonly small: "s"; readonly medium: "m"; readonly large: "l"; readonly 'extra-large': "xl"; }; /** * Represents the layout options for a component. */ export declare const layout: { readonly full: "full"; readonly 'three-quarters': "three-quarters"; readonly 'two-thirds': "two-thirds"; readonly 'one-half': "one-half"; readonly 'one-third': "one-third"; readonly 'one-quarter': "one-quarter"; }; /** * Defines the available colors for tags. * * For more information, see the [GOV.UK Design System documentation](https://design-system.service.gov.uk/components/tag/#additional-colours). */ export declare const tagColors: { readonly grey: "grey"; readonly green: "green"; readonly turquoise: "turquoise"; readonly blue: "blue"; readonly light: "light"; readonly purple: "purple"; readonly pink: "pink"; readonly red: "red"; readonly orange: "orange"; readonly yellow: "yellow"; };