import { SvgProps } from "../Svg"; export declare const integrationLogoNames: readonly ["addigy", "aws", "bamboohr", "bitbucket", "conveyor", "deploy", "events-api", "gcp", "github", "gitlab", "gsuite", "jamf", "jira", "jumpcloud", "okta", "onelogin", "salesforce", "slack", "zoom"]; export declare type IntegrationLogoName = typeof integrationLogoNames[number]; export interface IntegrationLogoProps extends SvgProps { logo?: IntegrationLogoName | string; color?: string; square?: boolean; size?: number; } export declare const IntegrationLogo: ({ logo, size, ...rest }: IntegrationLogoProps) => JSX.Element;