import type { FlattenInterpolation, ThemeProps } from "styled-components";
import type { Theme } from "../../defaultTheme";
declare const getTransitionAnimation: ({ width, shown, position, theme, }: {
    width: string;
    shown?: boolean | undefined;
    position: "right" | "left";
    theme: Theme;
}) => FlattenInterpolation<ThemeProps<Theme>>;
export default getTransitionAnimation;
