import { ExtractPropTypes } from 'vue';
declare const fadeTransitionProps: {
readonly duration: {
readonly type: NumberConstructor;
readonly default: 300;
};
};
export type FadeTransitionProps = ExtractPropTypes<typeof fadeTransitionProps>;
export { fadeTransitionProps };