import React from 'react';
import { SelectorBoxFileStateStylesType } from '../types/selectorBoxFileTheme';
type ParamsType = {
    percentage: number;
    styles?: SelectorBoxFileStateStylesType;
    onAnimationCompleted?: () => void;
};
type ReturnType = {
    topRef?: React.ForwardedRef<HTMLDivElement>;
    rightRef?: React.ForwardedRef<HTMLDivElement>;
    bottomRef?: React.ForwardedRef<HTMLDivElement>;
    leftRef?: React.ForwardedRef<HTMLDivElement>;
};
export declare const useBorderAnimation: ({ ...props }: ParamsType) => ReturnType;
export {};
