import type { AnimationDriver } from '../animation/types'; import type { CircleLayoutProps } from '../types'; /** * Validates the props passed to the CircleLayout component and * returns the validated props. If any of the props are invalid, an error is thrown. * @param props The properties passed to the component * @returns The validated properties */ export declare function validateProps(props: CircleLayoutProps): CircleLayoutProps & { sweepAngle: number; startAngle: number; }; //# sourceMappingURL=validation.d.ts.map