/// export declare const IndicatorSize: readonly ["sm", "default", "lg"]; export declare const IndicatorTypes: string[]; export interface ConnectionProps extends Partial> { size: typeof IndicatorSize[number]; variant: typeof IndicatorTypes[number]; } declare const Connection: ({ size, variant, ...props }: ConnectionProps) => JSX.Element; export default Connection;