/** * Shell function templates for the pbedrock command. * * Mirrors the paws pattern from src/commands/profile/index.ts. * Provides bash/zsh and PowerShell implementations of pbedrock. */ /** * Bash/Zsh shell function for pbedrock. * Supports: pbedrock on, pbedrock off, pbedrock (toggle) */ export declare const PBEDROCK_BASH: string; /** * PowerShell function for pbedrock. */ export declare const PBEDROCK_PWSH: string; export type ShellHint = 'zsh' | 'bash' | 'pwsh'; /** * Returns the appropriate pbedrock shell function and metadata. * * @param shellHint - Optional explicit shell override (from --shell flag) */ export declare function getShellFunction(shellHint?: ShellHint): { content: string; shellType: string; configFile: string; }; //# sourceMappingURL=shell-function.d.ts.map