export type FindKineticProps = { title?: string; enableHeading?: boolean; subTitle?: string; description?: string; localPathPrefix?: string; background?: "blue" | "green" | "navy" | "purple" | "white" | "yellow"; image?: string; list?: { name: string; code: string }[]; maxWidth?: boolean; color?: "dark" | "light"; columns?: 2 | 3 | 4; addTrailingSlash?: boolean; }; export type ThemeKey = | "blue" | "green" | "yellow" | "purple" | "white" | "navy";