///
import type { Registrar } from '@kui-shell/core';
export type FwriteOptions = {
append?: boolean;
a?: boolean;
};
export declare function _fwrite(_fullpath: string, data: string | Buffer, options?: {
append?: boolean;
}): Promise;
/**
* Register command handlers
*
*/
declare const _default: (registrar: Registrar) => void;
export default _default;