import React from 'react'; export interface SendIconProps { color?: string; /** Overall icon box size; the glyph scales to fit. Defaults to 20. */ size?: number; } /** * Dependency-free fallback send glyph (used when react-native-svg is not * installed; otherwise the Lucide "send" icon is rendered via the Icon * resolver). A triangle tilted to point up-and-to-the-right. */ export declare const SendIcon: ({ color, size }: SendIconProps) => React.JSX.Element; //# sourceMappingURL=SendIcon.d.ts.map