import React from 'react'; type AlphaProps = { onChange?: (alpha: number) => void; }; declare const Alpha: ({ onChange }: AlphaProps) => React.JSX.Element; declare const _default: typeof Alpha; export default _default;