interface BaileysBeadProps { theta: number; offset?: number; opa: number; } /** * The Baily's beads effect or diamond ring effect is a feature of total and annular solar eclipses. * As the Moon covers the Sun during a solar eclipse, the rugged topography of the lunar limb allows * beads of sunlight to shine through in some places while not in others. * The effect is named after Francis Baily, who explained the phenomenon in 1836. * * (Source: Wikipedia) */ export declare const BaileysBead: ({ theta, offset, opa }: BaileysBeadProps) => import("react/jsx-runtime").JSX.Element; export {};