import React from 'react'; type Options = { defs: React.JSX.Element | null; fills: string[]; iRef: { current: number; }; }; export declare function applyGradientToChildren(element: React.ReactNode, options: Options, traverseFillableProps?: (props: object, options: Options) => object): React.ReactNode; export declare function getRenderedElement(Component: React.ElementType | undefined, props: any): React.ReactElement | null; export {};