import React from "react"; export type AnimatedBorderProps = { children: React.ReactElement; /** Skip animation and render only children */ skipAnimation?: boolean; /** Border thickness in pixels * @default 1 */ thickness?: number; /** Inset to adjust for elements that already have borders */ inset?: number; /** Border radius */ radius?: number | string; /** Number of animation iterations * @default 2 */ iterations?: number; /** Clip the children to the border */ clip?: boolean; /** Hide the border of the children */ hideChildBorder?: boolean; "data-e2e-test-id"?: string; }; export declare function AnimatedBorder({ children, skipAnimation, thickness, inset, radius, iterations, clip, hideChildBorder, "data-e2e-test-id": dataE2eTestId, }: AnimatedBorderProps): React.ReactElement;