import type { ComponentProps, FC, PropsWithChildren } from "react"; import type { DeepPartial } from "../../helpers/deep-partial"; import { KeepColors } from "../../Keep/KeepTheme"; export interface KeepSidebarCTATheme { base: string; color: KeepSidebarCTAColors; } export interface SidebarCTAProps extends PropsWithChildren, Omit, "color"> { color?: keyof KeepSidebarCTAColors; theme?: DeepPartial; } export interface KeepSidebarCTAColors extends Pick { [key: string]: string; } export declare const SidebarCTA: FC;