/**
 * Given a CSS string, returns props for rendering with `expo-linear-gradient`.
 *
 * ```tsx
 * fromCSS('linear-gradient(180deg, #ff008450 0%, #fca40040 25%, #ffff0030 40%, #00ff8a20 60%, #00cfff40 75%, #cc4cfa50 100%);')
 * ```
 */
export declare function fromCSS(str: string): {
    start: {
        x: number;
        y: number;
    };
    end: {
        x: number;
        y: number;
    };
    colors: string[];
    locations: number[];
};
