import { IFrame, IFrameSequence, IUserInputs } from "../helpers/intefaces";
export declare class Frame implements IFrame {
    path: string;
    count: number;
    image: IFrameSequence;
    /**
     * Creates an instance of Options.
     * @param {IUserInputs} [options] Options to copy properties.
     * @memberof Options
     */
    constructor({ framePath, frameCount }: IUserInputs);
}
export default Frame;
