/** * Decorator that makes the method of flicking available in the framework. * @internal * @example * ```js * import Flicking, { withFlickingMethods } from "@egjs/flicking"; * * class Flicking extends React.Component> { * @withFlickingMethods * private flicking: Flicking; * } * ``` */ declare const withFlickingMethods: (prototype: any, flickingName: string) => void; export default withFlickingMethods;