import { FC, PropsWithChildren } from 'react'; import { SequenceProps } from '../sequencing'; declare type SeriesSequenceProps = PropsWithChildren<{ durationInFrames: number; offset?: number; } & Pick>; declare const SeriesSequence: ({ children }: SeriesSequenceProps) => JSX.Element; declare const Series: FC & { Sequence: typeof SeriesSequence; }; export { Series as Serie }; //# sourceMappingURL=index.d.ts.map