import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export type LogoName = 'ft' | 'ft-white' | 'tata-motors' | 'mdc-labs' | 'shakthi-logistics' | 'gati' | 'birla-pivot' | 'diageo' | 'diageo-white' | 'jsw-one' | 'shadowfax' | 'delhivery' | 'dhl' | 'kgc' | 'avikam' | 'safexpress' | 'bluedart' | 'tvs' | 'criticalog' | 'mec' | 'om-logistics' | 'apollo-tyres'; interface LogoProps extends ComposableProps<'div'> { name: LogoName; width?: number; height?: number; className?: string; } export declare const Logo: React.FC; export default Logo; //# sourceMappingURL=Logo.d.ts.map