import type { Oklab } from '@terrazzo/use-color';
import { type ComponentProps } from 'react';
export interface TrueGradientProps extends ComponentProps<'canvas'> {
    start: Oklab;
    end: Oklab;
}
declare function TrueGradient({ start, end, ...props }: TrueGradientProps): import("react/jsx-runtime").JSX.Element;
export default TrueGradient;
//# sourceMappingURL=TrueGradient.d.ts.map